File tree Expand file tree Collapse file tree
exercises/concept/ellens-alien-game Expand file tree Collapse file tree Original file line number Diff line number Diff 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)). '
You can’t perform that action at this time.
0 commit comments