Skip to content

Commit 57c7064

Browse files
author
Dominik Neise
committed
replace a HotS summary with a LotV summary ...
1 parent 0c87526 commit 57c7064

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

test_s2gs/lotv.s2gs

29.9 KB
Binary file not shown.

test_s2gs/test_all.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,13 @@ def test_a_WoL_s2gs(self):
1919
self.assertEqual(summary.players[0].build_order[0].order, 'Probe')
2020
self.assertEqual(summary.expansion, 'WoL')
2121

22-
def test_a_HotS_s2gs(self):
23-
summary = sc2reader.load_game_summary("test_s2gs/hots1.s2gs")
24-
self.assertEqual(summary.players[0].resource_collection_rate, 1599)
25-
self.assertEqual(summary.players[0].build_order[0].order, 'SCV')
22+
def test_a_LotV_s2gs(self):
23+
summary = sc2reader.load_game_summary("test_s2gs/lotv.s2gs")
24+
self.assertEqual(summary.players[0].resource_collection_rate, 1619)
25+
self.assertEqual(summary.players[0].build_order[0].order, 'Probe')
2626
self.assertEqual(summary.expansion, 'HotS')
2727

28+
"""
2829
def test_another_HotS_s2gs(self):
2930
summary = sc2reader.load_game_summary("test_s2gs/hots2.s2gs")
3031
self.assertEqual(summary.players[0].enemies_destroyed, 14575)
@@ -35,6 +36,7 @@ def test_another_HotS_s2gs(self):
3536
self.assertEqual(summary.players[0].workers_active_graph.as_points()[8][1], 25)
3637
self.assertEqual(summary.players[0].upgrade_spending_graph.as_points()[8][1], 300)
3738
self.assertEqual(summary.expansion, 'HotS')
39+
"""
3840

3941
if __name__ == '__main__':
4042
unittest.main()

0 commit comments

Comments
 (0)