[tor-commits] [tor/master] Tweak test case text so it's clearer

nickm at torproject.org nickm at torproject.org
Fri Mar 9 16:30:59 UTC 2012


commit fa1d6f812c31d438ecd81f6f9e57a1982fa5ba52
Author: Esteban Manchado Velázquez <emanchado at demiurgo.org>
Date:   Sat Feb 11 22:33:49 2012 +0100

    Tweak test case text so it's clearer
---
 src/test/test_util.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/test/test_util.c b/src/test/test_util.c
index fe6f4d7..f5adad9 100644
--- a/src/test/test_util.c
+++ b/src/test/test_util.c
@@ -1514,7 +1514,7 @@ test_util_find_str_at_start_of_line(void *ptr)
   char *line2 = strchr(long_string,'\n')+1;
   char *line3 = strchr(line2,'\n')+1;
   const char *short_string = "hello kitty\n"
-    "third line\n";
+    "second line\n";
   char *short_line2 = strchr(short_string,'\n')+1;
 
   (void)ptr;
@@ -1535,7 +1535,7 @@ test_util_find_str_at_start_of_line(void *ptr)
   test_eq_ptr(line3, find_str_at_start_of_line(long_string, "third line"));
   test_eq_ptr(NULL,  find_str_at_start_of_line(long_string, "third line\n"));
   test_eq_ptr(short_line2, find_str_at_start_of_line(short_string,
-                                                     "third line\n"));
+                                                     "second line\n"));
  done:
   ;
 }





More information about the tor-commits mailing list