Skip to content

Commit

Permalink
Fix typo in spec
Browse files Browse the repository at this point in the history
  • Loading branch information
matiasgarciaisaia committed Feb 21, 2024
1 parent c315a27 commit 1398027
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/ask/runtime/channel_broker_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ defmodule Ask.Runtime.ChannelBrokerTest do
# and activated three of the pending ones (order depends on MySQL version):
assert_some_in_both(
3,
respondents |> Enum.drop(5) |> Enum.map(& &1id),
respondents |> Enum.drop(5) |> Enum.map(& &1.id),
active_respondent_ids
)
end
Expand Down Expand Up @@ -261,7 +261,7 @@ defmodule Ask.Runtime.ChannelBrokerTest do
# and activated three of the pending ones (order depends on MySQL version):
assert_some_in_both(
3,
respondents |> Enum.drop(5) |> Enum.map(& &1id),
respondents |> Enum.drop(5) |> Enum.map(& &1.id),
active_respondent_ids
)
end
Expand Down Expand Up @@ -313,7 +313,7 @@ defmodule Ask.Runtime.ChannelBrokerTest do
# and activated three of the pending ones (order depends on MySQL version):
assert_some_in_both(
3,
respondents |> Enum.drop(5) |> Enum.map(& &1id),
respondents |> Enum.drop(5) |> Enum.map(& &1.id),
active_respondent_ids
)
end
Expand Down

0 comments on commit 1398027

Please sign in to comment.