Skip to content

Commit 810e76c

Browse files
committedMar 17, 2025··
update maybe win/loss categories in test
1 parent 6628087 commit 810e76c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
 

‎test.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@ def test_eight_piece_mate(self):
4141

4242
self.assertEqual(r["moves"][2]["category"], "unknown")
4343

44-
def test_maybe_win(self):
44+
def test_syzygy_win(self):
4545
r = standard("K7/2k5/3n4/8/2b5/8/8/8 w - - 97 128")
46-
self.assertIn(r["category"], ["maybe-loss", "blessed-loss"])
46+
self.assertIn(r["category"], ["syzygy-loss", "blessed-loss"])
4747
self.assertEqual(r["moves"][0]["san"], "Ka7")
4848
self.assertIn(r["moves"][0]["dtz"], [2, 3])
49-
self.assertIn(r["moves"][0]["category"], ["maybe-win", "cursed-win"])
49+
self.assertIn(r["moves"][0]["category"], ["syzygy-win", "cursed-win"])
5050

5151
r = standard("2n5/K1k5/8/8/2b5/8/8/8 w - - 99 129")
5252
self.assertEqual(r["category"], "blessed-loss")
@@ -90,9 +90,9 @@ def test_barely_losing(self):
9090
self.assertEqual(r["moves"][0]["category"], "win")
9191

9292
r = standard("8/6B1/6B1/8/2K2n2/4k3/8/8 w - - 1 2")
93-
self.assertIn(r["category"], ["maybe-win", "win"])
93+
self.assertIn(r["category"], ["syzygy-win", "win"])
9494
self.assertEqual(r["moves"][0]["dtz"], -98)
95-
self.assertIn(r["moves"][0]["category"], ["maybe-loss", "loss"])
95+
self.assertIn(r["moves"][0]["category"], ["syzygy-loss", "loss"])
9696

9797
def test_cbor_six_piece_mate(self):
9898
r = cbor2.loads(requests.get(f"{TABLEBASE_ENDPOINT}/standard", {

0 commit comments

Comments
 (0)
Please sign in to comment.