Ver código fonte

fix my tests

svn path=/trunk/mono/; revision=63965
Gonzalo Paniagua Javier 19 anos atrás
pai
commit
3af941e9e5
1 arquivos alterados com 2 adições e 2 exclusões
  1. 2 2
      eglib/test/string-util.c

+ 2 - 2
eglib/test/string-util.c

@@ -109,7 +109,7 @@ test_strjoin ()
 char *
 test_strchug ()
 {
-	char *str = g_strdup (" \v\thola");
+	char *str = g_strdup (" \t\n hola");
 
 	g_strchug (str);
 	if (strcmp ("hola", str)) {
@@ -139,7 +139,7 @@ test_strchomp ()
 char *
 test_strstrip ()
 {
-	char *str = g_strdup ("  \vhola   ");
+	char *str = g_strdup (" \t hola   ");
 
 	g_strstrip (str);
 	if (strcmp ("hola", str)) {