[Groonga-commit] groonga/groonga [master] test: fix invalid JSON

Back to archive index

Kouhei Sutou null+****@clear*****
Tue Nov 27 22:42:15 JST 2012


Kouhei Sutou	2012-11-27 22:42:15 +0900 (Tue, 27 Nov 2012)

  New Revision: 4bbf53b8610322994e8567338947fc09fb366fbd
  https://github.com/groonga/groonga/commit/4bbf53b8610322994e8567338947fc09fb366fbd

  Log:
    test: fix invalid JSON
    
    Remove needless the last comma.

  Modified files:
    test/command/suite/select/filter/arithmetic_operation/signed_right_shift.expected
    test/command/suite/select/filter/arithmetic_operation/signed_right_shift.test
    test/command/suite/select/filter/arithmetic_operation/unsigned_right_shift.expected
    test/command/suite/select/filter/arithmetic_operation/unsigned_right_shift.test

  Modified: test/command/suite/select/filter/arithmetic_operation/signed_right_shift.expected (+1 -1)
===================================================================
--- test/command/suite/select/filter/arithmetic_operation/signed_right_shift.expected    2012-11-27 22:40:55 +0900 (042758a)
+++ test/command/suite/select/filter/arithmetic_operation/signed_right_shift.expected    2012-11-27 22:42:15 +0900 (d2fc596)
@@ -6,7 +6,7 @@ load --table Users
 [
 {"_key": "Alice",  "score": -100},
 {"_key": "Bob",    "score":  100},
-{"_key": "Carlos", "score":  -50},
+{"_key": "Carlos", "score":  -50}
 ]
 [[0,0.0,0.0],3]
 select Users --filter 'true' --scorer '_score = score >> 1'   --output_columns _key,score,_score

  Modified: test/command/suite/select/filter/arithmetic_operation/signed_right_shift.test (+1 -1)
===================================================================
--- test/command/suite/select/filter/arithmetic_operation/signed_right_shift.test    2012-11-27 22:40:55 +0900 (61ebeba)
+++ test/command/suite/select/filter/arithmetic_operation/signed_right_shift.test    2012-11-27 22:42:15 +0900 (a7dd346)
@@ -5,7 +5,7 @@ load --table Users
 [
 {"_key": "Alice",  "score": -100},
 {"_key": "Bob",    "score":  100},
-{"_key": "Carlos", "score":  -50},
+{"_key": "Carlos", "score":  -50}
 ]
 
 select Users --filter 'true' --scorer '_score = score >> 1' \

  Modified: test/command/suite/select/filter/arithmetic_operation/unsigned_right_shift.expected (+1 -1)
===================================================================
--- test/command/suite/select/filter/arithmetic_operation/unsigned_right_shift.expected    2012-11-27 22:40:55 +0900 (357d472)
+++ test/command/suite/select/filter/arithmetic_operation/unsigned_right_shift.expected    2012-11-27 22:42:15 +0900 (da0f271)
@@ -6,7 +6,7 @@ load --table Users
 [
 {"_key": "Alice",  "score": -100},
 {"_key": "Bob",    "score":  100},
-{"_key": "Carlos", "score":  -50},
+{"_key": "Carlos", "score":  -50}
 ]
 [[0,0.0,0.0],3]
 select Users --filter 'true' --scorer '_score = score >>> 1'   --output_columns _key,score,_score

  Modified: test/command/suite/select/filter/arithmetic_operation/unsigned_right_shift.test (+1 -1)
===================================================================
--- test/command/suite/select/filter/arithmetic_operation/unsigned_right_shift.test    2012-11-27 22:40:55 +0900 (5d853dd)
+++ test/command/suite/select/filter/arithmetic_operation/unsigned_right_shift.test    2012-11-27 22:42:15 +0900 (cf0136c)
@@ -5,7 +5,7 @@ load --table Users
 [
 {"_key": "Alice",  "score": -100},
 {"_key": "Bob",    "score":  100},
-{"_key": "Carlos", "score":  -50},
+{"_key": "Carlos", "score":  -50}
 ]
 
 select Users --filter 'true' --scorer '_score = score >>> 1' \
-------------- next part --------------
HTML����������������������������...
Télécharger 



More information about the Groonga-commit mailing list
Back to archive index