aboutsummaryrefslogtreecommitdiffstats
path: root/tests_solver
diff options
context:
space:
mode:
authorMarianne Chevrot <blackmoor+git@devys.org>2020-05-20 17:56:17 +0200
committerMarianne Chevrot <blackmoor+git@devys.org>2020-05-20 17:56:17 +0200
commitbc706018b92df380052fe0ab76af533bc8225fa8 (patch)
treec9378c266268ade493d6e971d3b92ea133ccd48f /tests_solver
parent4e959caf03d749f5a5908e074b02cd9cf52606cc (diff)
downloadkana_quest_solver-master.tar.gz
kana_quest_solver-master.tar.bz2
kana_quest_solver-master.zip
speed up thingsHEADmaster
Diffstat (limited to 'tests_solver')
-rw-r--r--tests_solver/test_solver.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests_solver/test_solver.py b/tests_solver/test_solver.py
index 808804e..a1a0e67 100644
--- a/tests_solver/test_solver.py
+++ b/tests_solver/test_solver.py
@@ -15,7 +15,6 @@ def test_is_swappable():
[Kana("froz", "su"), Kana("norm", "su")],
[Kana("norm", "su"), Kana("norm" )],
[Kana("norm" ), Kana("froz", "su")],
- [Kana("norm" ), Kana("norm" )],
]
for swappable_grid in swappable_grids:
@@ -26,6 +25,7 @@ def test_is_swappable():
not_swappable_grids = [
[Kana("norm", "su"), Kana("rock", "su")],
[Kana("froz", "su"), Kana("froz", "su")],
+ [Kana("norm" ), Kana("norm" )],
]
for not_swappable_grid in not_swappable_grids: