Navigation Menu

Skip to content

Commit

Permalink
test: fix indent
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Apr 13, 2017
1 parent 899f719 commit 015a46c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/request/test-select.rb
Expand Up @@ -101,16 +101,16 @@ def in_values(column_name, *values)
assert_equal({
:table => "posts",
:filter => "in_values(ages, 2, 29)",
},
in_values("ages", 2, 29))
},
in_values("ages", 2, 29))
end

test("strings") do
assert_equal({
:table => "posts",
:filter => "in_values(tags, \"groonga\", \"have \\\"double\\\" quote\")",
},
in_values("tags", "groonga", "have \"double\" quote"))
},
in_values("tags", "groonga", "have \"double\" quote"))
end
end
end
Expand Down

0 comments on commit 015a46c

Please sign in to comment.