Skip to content

Commit 6144e47

Browse files
committed
Fixes small syntax error, a little bit of C must have snuck in somewhere
1 parent d9266a2 commit 6144e47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test_replays/test_all.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ def test_two_player_game_without_winner():
299299
print replay.players[1].result
300300
print replay.actors[2].result
301301
print replay.actors[3].result
302-
assert replay.players[0].result == 'Win' || replay.players[1].result == 'Win'
302+
assert replay.players[0].result == 'Win' or replay.players[1].result == 'Win'
303303

304304
def test_24():
305305
replay = sc2reader.read("test_replays/build17811/24.SC2Replay")

0 commit comments

Comments
 (0)