brianp      2003/06/24 00:28:41

  Modified:    test     testtable.c
  Log:
  fix a bug in the table overlap test
  
  Revision  Changes    Path
  1.10      +1 -1      apr/test/testtable.c
  
  Index: testtable.c
  ===================================================================
  RCS file: /home/cvs/apr/test/testtable.c,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- testtable.c       1 Jan 2003 00:01:56 -0000       1.9
  +++ testtable.c       24 Jun 2003 07:28:41 -0000      1.10
  @@ -174,7 +174,7 @@
       val = apr_table_get(t1, "a");
       CuAssertStrEquals(tc, val, "1");
       val = apr_table_get(t1, "b");
  -    CuAssertStrEquals(tc, val, "2");
  +    CuAssertStrEquals(tc, val, "2.");
       val = apr_table_get(t1, "c");
       CuAssertStrEquals(tc, val, "3");
       val = apr_table_get(t1, "d");
  
  
  

Reply via email to