Skip to content

Commit 4c237c7

Browse files
Remove null constraint error for test
1 parent 14dd096 commit 4c237c7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

activerecord/test/cases/adapters/postgresql/bind_parameter_test.rb

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ def test_where_with_rational_for_string_column_using_bind_parameters
3434
end
3535

3636
def test_where_with_nil_for_string_column_using_bind_parameters
37-
post = Post.create!
38-
relation = Post.where("LOWER(title) IS ?", nil)
37+
post = Post.create!(title: "Foo", body: "Bar", type: nil)
38+
relation = Post.where("LOWER(type) IS ?", nil)
3939
assert_equal post, relation.first
4040

41-
expected_sql = %{SELECT "posts".* FROM "posts" WHERE (LOWER(title) IS NULL)}
41+
expected_sql = %{SELECT "posts".* FROM "posts" WHERE (LOWER(type) IS NULL)}
4242
assert_equal(expected_sql, relation.to_sql)
4343
end
4444

0 commit comments

Comments
 (0)