null+****@clear*****
null+****@clear*****
2010年 7月 13日 (火) 09:40:09 JST
Kouhei Sutou 2010-07-13 00:40:09 +0000 (Tue, 13 Jul 2010)
New Revision: 3af1285a0f59c678dc90125286542cd7a35be3a1
Log:
follow the recent return value form change.
Modified files:
test/unit/lib/ruby/groonga-http-test-utils.rb
Modified: test/unit/lib/ruby/groonga-http-test-utils.rb (+2 -2)
===================================================================
--- test/unit/lib/ruby/groonga-http-test-utils.rb 2010-07-12 05:43:44 +0000 (c1374db)
+++ test/unit/lib/ruby/groonga-http-test-utils.rb 2010-07-13 00:40:09 +0000 (931c6d2)
@@ -140,7 +140,7 @@ module GroongaHTTPTestUtils
response = get(command_path(:load,
:table => table,
:values => json(values)))
- assert_response([success_status_response, [n_values]], response,
+ assert_response([success_status_response, n_values], response,
:content_type => "application/json")
end
@@ -234,7 +234,7 @@ module GroongaHTTPTestUtils
end
def assert_success_response(response, options=nil)
- assert_response([success_status_response, [true]], response, options)
+ assert_response([success_status_response, true], response, options)
end
def assert_response_body(body, response, options=nil, &block)