From 6ad15effa44628f314b488309ff3c748df213cc4 Mon Sep 17 00:00:00 2001 From: Ismael <33593859+IMC00@users.noreply.github.com> Date: Tue, 28 Jul 2026 16:48:36 +0200 Subject: [PATCH] Removing unnecesary line in test There is a line in one of the tests that tries to access a class attribute that doesn't exist. While it isn't breaking in any sense, that line is pointless. I've run the tests without the line that they pass appropiately. --- exercises/concept/ellens-alien-game/classes_test.py | 1 - 1 file changed, 1 deletion(-) diff --git a/exercises/concept/ellens-alien-game/classes_test.py b/exercises/concept/ellens-alien-game/classes_test.py index a73e652cfa..224b481249 100644 --- a/exercises/concept/ellens-alien-game/classes_test.py +++ b/exercises/concept/ellens-alien-game/classes_test.py @@ -144,7 +144,6 @@ def test_alien_class_variable(self): """Test class attribute/variables are identical across instances.""" alien_one, alien_two = Alien(0, 2), Alien(-6, -1) - Alien.health = 6 created_error_message = ('Created two new Aliens and requested the ' 'total_aliens_created attribute for each one. '