We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13e674c commit c6e7e49Copy full SHA for c6e7e49
1 file changed
test.py
@@ -3893,12 +3893,16 @@ def test_suicide_stats(self):
3893
msg=f"Expected dtz {solution['dtz']}, got {dtz} (in l. {l + 1}, fen: {board.fen()})")
3894
3895
def test_antichess_kvk(self):
3896
- kvk = chess.variant.AntichessBoard("8/8/8/8/8/3K4/8/4k3 w - - 0 30")
+ kvk = chess.variant.AntichessBoard("4k3/8/8/8/8/8/8/4K3 w - - 0 1")
3897
3898
tables = chess.syzygy.Tablebase()
3899
with self.assertRaises(KeyError):
3900
tables.probe_dtz(kvk)
3901
3902
+ tables = chess.syzygy.Tablebase(VariantBoard=chess.variant.AntichessBoard)
3903
+ with self.assertRaises(chess.syzygy.MissingTableError):
3904
+ tables.probe_dtz(kvk)
3905
+
3906
3907
class NativeGaviotaTestCase(unittest.TestCase):
3908
0 commit comments