aboutsummaryrefslogtreecommitdiffstats
path: root/tests_solver/test_solver.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests_solver/test_solver.py')
-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: