Commit fabc202a authored by Igor Drozdov's avatar Igor Drozdov

Fix wrong SQL query expectation

parent 2ad84e85
...@@ -635,7 +635,7 @@ RSpec.describe User do ...@@ -635,7 +635,7 @@ RSpec.describe User do
SELECT "users".* FROM "users" SELECT "users".* FROM "users"
WHERE ("users"."state" IN ('active')) WHERE ("users"."state" IN ('active'))
AND AND
("users"."user_type" IS NULL OR "users"."user_type" IN (NULL, 6, 4)) ("users"."user_type" IS NULL OR "users"."user_type" IN (6, 4))
AND AND
("users"."user_type" IS NULL OR "users"."user_type" NOT IN (2, 6, 1, 3, 7, 8)) ("users"."user_type" IS NULL OR "users"."user_type" NOT IN (2, 6, 1, 3, 7, 8))
SQL SQL
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment