Skip to content

Commit 9cb5873

Browse files
committed
Replace tab with spaces
1 parent fe79e93 commit 9cb5873

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

exercises/concept/ellens-alien-game/classes_test.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def test_alien_hit_method(self):
9898

9999
@pytest.mark.task(taskno=3)
100100
def test_alien_is_alive_method(self):
101-
"""Test the is_alive() method returns the expected values after a number of hits."""
101+
"""Test the is_alive() method returns the expected values after a number of hits."""
102102
alien = Alien(0, 1)
103103

104104
alive_error = ('Created a new Alien and called hit(). '
@@ -118,7 +118,7 @@ def test_alien_is_alive_method(self):
118118

119119
@pytest.mark.task(taskno=4)
120120
def test_alien_teleport_method(self):
121-
"""Test the teleport method updates the alien's coordinates."""
121+
"""Test the teleport method updates the alien's coordinates."""
122122
alien = Alien(0, 0)
123123
alien.teleport(-1, -4)
124124

@@ -131,7 +131,7 @@ def test_alien_teleport_method(self):
131131

132132
@pytest.mark.task(taskno=5)
133133
def test_alien_collision_detection_method(self):
134-
"""Test the collision_detection() method can be called and returns None."""
134+
"""Test the collision_detection() method can be called and returns None."""
135135
alien = Alien(7, 3)
136136
error_message = ('Created a new Alien at (7,3) and called '
137137
'alien.collision_detection(Alien(7, 2)). '

0 commit comments

Comments
 (0)