Skip to content

Commit

Permalink
Chore // Bumped up test version (#447)
Browse files Browse the repository at this point in the history
* bumped up test version

* ran mix format
  • Loading branch information
stuartjohnpage authored Aug 8, 2024
1 parent c1bf23c commit fb8e21f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ name: Test
on: push

env:
OTP_VERSION_SPEC: "24.1"
ELIXIR_VERSION_SPEC: "1.12.3"
OTP_VERSION_SPEC: "26.2.4"
ELIXIR_VERSION_SPEC: "1.16.2"
MIX_ENV: test

jobs:
Expand Down
2 changes: 1 addition & 1 deletion lib/slax_web/websockets/poker.ex
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ defmodule SlaxWeb.Poker do
estimates =
round.estimates
|> Enum.sort_by(& &1.value)
|> Enum.map(&"#{&1.user} (#{&1.value})#{if &1.reason, do: ': #{&1.reason}'}")
|> Enum.map(&"#{&1.user} (#{&1.value})#{if &1.reason, do: ~c": #{&1.reason}"}")

message = "Estimates for round:\n---\n#{Enum.join(estimates, "\n")}"

Expand Down

0 comments on commit fb8e21f

Please sign in to comment.