Skip to content

Commit

Permalink
make test to pass
Browse files Browse the repository at this point in the history
  • Loading branch information
oplatek committed Nov 5, 2024
1 parent c52e0aa commit 1cb649b
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions tests/test_demo.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 1cb649b

Please sign in to comment.