Skip to content

Commit 73344ed

Browse files
author
Jim Flood
committed
Fix warning from rake test
1 parent 7cc3cc6 commit 73344ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_database.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ def test_function_return_types
269269

270270
def test_function_return_type_round_trip
271271
[10, 2.2, nil, "foo", Blob.new("foo\0bar")].each do |thing|
272-
@db.define_function("hello") { |thing| thing }
272+
@db.define_function("hello") { |a| a }
273273
assert_equal [thing], @db.execute("select hello(hello(?))", [thing]).first
274274
end
275275
end

0 commit comments

Comments
 (0)