@@ -41,12 +41,12 @@ def test_eight_piece_mate(self):
41
41
42
42
self .assertEqual (r ["moves" ][2 ]["category" ], "unknown" )
43
43
44
- def test_maybe_win (self ):
44
+ def test_syzygy_win (self ):
45
45
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" ])
47
47
self .assertEqual (r ["moves" ][0 ]["san" ], "Ka7" )
48
48
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" ])
50
50
51
51
r = standard ("2n5/K1k5/8/8/2b5/8/8/8 w - - 99 129" )
52
52
self .assertEqual (r ["category" ], "blessed-loss" )
@@ -90,9 +90,9 @@ def test_barely_losing(self):
90
90
self .assertEqual (r ["moves" ][0 ]["category" ], "win" )
91
91
92
92
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" ])
94
94
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" ])
96
96
97
97
def test_cbor_six_piece_mate (self ):
98
98
r = cbor2 .loads (requests .get (f"{ TABLEBASE_ENDPOINT } /standard" , {
0 commit comments