minor: oops parens were still giving a warning

This commit is contained in:
Mike Dirolf 2009-11-25 10:35:06 -05:00
parent 6151f95cd5
commit 36423240a6
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ class ConnectionTest < Test::Unit::TestCase
should "check out a new connection" do
socket = @conn.checkout
assert(@conn.reserved_connections.keys.include? Thread.current.object_id)
assert @conn.reserved_connections.keys.include?(Thread.current.object_id)
end
context "with multiple threads" do