Navigation Menu

Skip to content

Commit

Permalink
Extract body of table_list and column_list results correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
piroor committed Apr 24, 2014
1 parent bb6635c commit 7c5f0ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/drntest/response-normalizer.rb
Expand Up @@ -102,9 +102,9 @@ def normalize_groonga_command_body!(body)

case @request["type"]
when "table_list"
normalize_groonga_table_list_command_body!(body[1..-1])
normalize_groonga_table_list_command_body!(body[0][1..-1])
when "column_list"
normalize_groonga_column_list_command_body!(body[1..-1])
normalize_groonga_column_list_command_body!(body[0][1..-1])
end
end

Expand Down

0 comments on commit 7c5f0ac

Please sign in to comment.