null+****@clear*****
null+****@clear*****
2010年 6月 25日 (金) 15:41:19 JST
Kouhei Sutou 2010-06-25 06:41:19 +0000 (Fri, 25 Jun 2010)
New Revision: 1c8787439a47d0525825f96909fa579cc018c5ac
Log:
follow error message cange.
Modified files:
test/unit/http/test-http-schema.rb
Modified: test/unit/http/test-http-schema.rb (+3 -2)
===================================================================
--- test/unit/http/test-http-schema.rb 2010-06-25 06:37:29 +0000 (9dd7902)
+++ test/unit/http/test-http-schema.rb 2010-06-25 06:41:19 +0000 (c42ddeb)
@@ -141,14 +141,15 @@ class HTTPSchemaTest < Test::Unit::TestCase
def test_column_list_nonexistent
response = get(command_path(:column_list,
:table => "nonexistent"))
- assert_error_response(Result::INVALID_ARGUMENT, "table 'nonexistent' is not exist.",
+ assert_error_response(Result::INVALID_ARGUMENT,
+ "table 'nonexistent' does not exist.",
response,
:content_type => "application/json")
end
def test_column_list_without_table
response = get(command_path(:column_list))
- assert_error_response(Result::INVALID_ARGUMENT, "table '' is not exist.",
+ assert_error_response(Result::INVALID_ARGUMENT, "table '' does not exist.",
response,
:content_type => "application/json")
end