Skip to content

Commit

Permalink
Cambios en el test de los alumnos para comprobar operaciones con ceros
Browse files Browse the repository at this point in the history
  • Loading branch information
dcsibon committed Nov 11, 2024
1 parent dfadb04 commit 0bad8e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_calculadora_alumnos.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0bad8e8

Please sign in to comment.