Skip to content

Commit

Permalink
Fix formatting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
AlphaHydrae committed Nov 9, 2024
1 parent 030ee59 commit 4ebfb36
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion test/minesweeper/game_server_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,12 @@ defmodule Minesweeper.GameServerTest do

insert(:move, game: game, position: [1, 1])

assert pid = start_supervised!(%{id: {GameServer, game.id}, start: {GameServer, :start_link, [game.id]}})
assert pid =
start_supervised!(%{
id: {GameServer, game.id},
start: {GameServer, :start_link, [game.id]}
})

assert GameServer.start_link(game.id) == {:ok, pid}

# Play a move in the game to ensure that the game is done initializing.
Expand Down

0 comments on commit 4ebfb36

Please sign in to comment.