From 1cb649b3049bd688a05abeba77fddfa448eddc67 Mon Sep 17 00:00:00 2001 From: Ondrej Platek Date: Tue, 5 Nov 2024 17:19:26 +0100 Subject: [PATCH] make test to pass --- tests/test_demo.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/tests/test_demo.py b/tests/test_demo.py index 867f2fd8..e2f42aef 100644 --- a/tests/test_demo.py +++ b/tests/test_demo.py @@ -2,9 +2,10 @@ def test_demo_ok(): assert 1 + 1 == 2 -def test_demo_ko(): - assert 1 + 1 == 3 - - -def test_demo_exception(): - return 1 / 0 +# # Uncomment to fail the tests +# def test_demo_ko(): +# assert 1 + 1 == 3 +# +# +# def test_demo_exception(): +# return 1 / 0