From 0bad8e8a14f8847bde8242ae6d5ff65b44c964cb Mon Sep 17 00:00:00 2001 From: dcsibon Date: Mon, 11 Nov 2024 16:30:49 +0100 Subject: [PATCH] Cambios en el test de los alumnos para comprobar operaciones con ceros --- tests/test_calculadora_alumnos.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_calculadora_alumnos.py b/tests/test_calculadora_alumnos.py index b5ceb00..abe4ffd 100644 --- a/tests/test_calculadora_alumnos.py +++ b/tests/test_calculadora_alumnos.py @@ -10,8 +10,8 @@ def test_es_resultado_negativo(): - #assert es_resultado_negativo(-5, 0) is False - #assert es_resultado_negativo(0, -7) is False + assert es_resultado_negativo(-5, 0) is False + assert es_resultado_negativo(0, -7) is False assert es_resultado_negativo(0, 0) is False # Casos donde el resultado debe ser negativo