Skip to content

Commit e0c89f8

Browse files
committed
test: fix tests after minitest upgrade
Fixes fallout from e01bf7f. One `must_be_like` was missed.
1 parent 240cd03 commit e0c89f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

activerecord/test/cases/arel/select_manager_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ def test_join_sources
377377
mgr.from table
378378
mgr.orders << Arel::Nodes::Ascending.new(Arel.sql("foo"))
379379
mgr.ast.grep(Arel::Nodes::OuterJoin)
380-
mgr.to_sql.must_be_like %{ SELECT * FROM "users" ORDER BY foo ASC }
380+
_(mgr.to_sql).must_be_like %{ SELECT * FROM "users" ORDER BY foo ASC }
381381
end
382382
end
383383

0 commit comments

Comments
 (0)