Skip to content

Commit 6dde890

Browse files
Merge pull request #2823 from avinashkranjan/deepsource-transform-c4eccecb
format code with autopep8
2 parents 402412b + cffea71 commit 6dde890

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Automated Game Testing Framework/game_testing_framework.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import unittest
22

3+
34
class Game:
45
def __init__(self):
56
self.is_running = False
@@ -25,6 +26,7 @@ def quit(self):
2526
self.is_running = False
2627
return "Game quit."
2728

29+
2830
class TestGame(unittest.TestCase):
2931
@classmethod
3032
def setUpClass(cls):
@@ -53,5 +55,6 @@ def test_non_running_actions(self):
5355
result = self.game.play("move_forward")
5456
self.assertEqual(result, "Game is not running.")
5557

58+
5659
if __name__ == "__main__":
5760
unittest.main()

0 commit comments

Comments
 (0)