Skip to content

Commit

Permalink
stop flakiness
Browse files Browse the repository at this point in the history
  • Loading branch information
filipecabaco committed Nov 18, 2024
1 parent 272e778 commit 2177dcc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/realtime/tenants/migrations_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,10 @@ defmodule Realtime.Tenants.MigrationsTest do
end)
end
|> Task.await_many()
|> Enum.uniq()
|> MapSet.new()

assert [:ok, {:error, :migration_already_running}] = res
expected = MapSet.new([:ok, {:error, :migration_already_running}])
assert ^expected = res
end
end
end

0 comments on commit 2177dcc

Please sign in to comment.