Skip to content

Commit

Permalink
chore: fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ruioliveira02 committed Jan 19, 2025
1 parent 1baac66 commit dc531f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/safira/minigames.ex
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ defmodule Safira.Minigames do
iex> subscribe_to_wheel_wins()
:ok
"""
def subscribe_to_wheel_wins() do
def subscribe_to_wheel_wins do
Phoenix.PubSub.subscribe(@pubsub, "wheel_win")
end

Expand Down
2 changes: 1 addition & 1 deletion test/safira/minigames_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ defmodule Safira.MinigamesTest do

test "list_wheel_drops/0 returns all wheel_drops" do
wheel_drop = wheel_drop_fixture()
assert Minigames.list_wheel_drops() == [wheel_drop]
assert Enum.map(Minigames.list_wheel_drops(), fn d -> d.id end) == [wheel_drop.id]
end

test "get_wheel_drop!/1 returns the wheel_drop with given id" do
Expand Down

0 comments on commit dc531f2

Please sign in to comment.