aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/test_select_manager.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/test_select_manager.rb b/test/test_select_manager.rb
index ca47b873a2..a00d1843ba 100644
--- a/test/test_select_manager.rb
+++ b/test/test_select_manager.rb
@@ -668,7 +668,6 @@ module Arel
joins = users.join(counts).on(counts[:user_id].eq(10))
joins.to_sql.must_be_like %{
SELECT FROM "users" INNER JOIN (SELECT "comments"."user_id" AS user_id, COUNT("comments"."user_id") AS count FROM "comments" GROUP BY "comments"."user_id") counts ON counts."user_id" = 10
-
}
end