Procházet zdrojové kódy

Tweak test case text so it's clearer

Esteban Manchado Velázquez před 13 roky
rodič
revize
fa1d6f812c
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 2 2
      src/test/test_util.c

+ 2 - 2
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:
   ;
 }