Skip to content

Commit

Permalink
Remove unused imports
Browse files Browse the repository at this point in the history
Fix unused imports
  • Loading branch information
jauggy committed Jul 14, 2024
1 parent 2a13a77 commit e3cf0ab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
7 changes: 3 additions & 4 deletions test/teiserver/battle/brute_force_internal_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ defmodule Teiserver.Battle.BruteForceInternalTest do
"""
use Teiserver.DataCase, async: true
@moduletag :balance_test
alias Teiserver.Battle.BalanceLib
alias Teiserver.Battle.Balance.BruteForce
alias Teiserver.Helper.CombinationsHelper

Expand Down Expand Up @@ -69,15 +68,15 @@ defmodule Teiserver.Battle.BruteForceInternalTest do
]

result = BruteForce.count_broken_parties(first_team, parties)
assert result = 1
assert result == 1

parties = [["kyutoryu", "fbots1998", "A"], ["Dix", "Dixinormus"]]
result = BruteForce.count_broken_parties(first_team, parties)
assert result = 2
assert result == 2

parties = [["A", "B", "C"], ["HungDaddy", "fbots1998"]]
result = BruteForce.count_broken_parties(first_team, parties)
assert result = 0
assert result == 0
end

test "can get all combos" do
Expand Down
2 changes: 0 additions & 2 deletions test/teiserver/battle/brute_force_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@ defmodule Teiserver.Battle.BruteForceTest do
"""
use Teiserver.DataCase, async: true
@moduletag :balance_test
alias Teiserver.Battle.BalanceLib
alias Teiserver.Battle.Balance.BruteForce
alias Teiserver.Helper.CombinationsHelper

test "can process expanded_group" do
# https://server5.beyondallreason.info/battle/2092529/players
Expand Down

0 comments on commit e3cf0ab

Please sign in to comment.