null+****@clear*****
null+****@clear*****
2010年 7月 2日 (金) 12:48:34 JST
Kouhei Sutou 2010-07-02 03:48:34 +0000 (Fri, 02 Jul 2010)
New Revision: 1a5d54770c1ec64247003f1185116bf8a96fd364
Log:
remove needless backslash escapes.
Modified files:
test/unit/core/test-register.c
Modified: test/unit/core/test-register.c (+4 -4)
===================================================================
--- test/unit/core/test-register.c 2010-07-02 03:48:21 +0000 (8d69ed4)
+++ test/unit/core/test-register.c 2010-07-02 03:48:34 +0000 (f2c230f)
@@ -117,9 +117,9 @@ test_register_function(void)
"COLUMN_INDEX|WITH_POSITION Sites _key");
assert_send_command("load '[[\"_key\"],[\"groonga.org\"]]' Sites");
cut_assert_equal_string("[[[1],[[\"_score\",\"Int32\"]],[11]]]",
- send_command("select Sites " \
- "--output_columns _score " \
- "--match_columns _key " \
- "--query groonga " \
+ send_command("select Sites "
+ "--output_columns _score "
+ "--match_columns _key "
+ "--query groonga "
"--scorer '_score=str_len(_key)'"));
}