6 lines
84 B
Python
6 lines
84 B
Python
def test_true():
|
|
assert 1 + 1 == 2
|
|
|
|
|
|
def test_not_true():
|
|
assert 1 + 1 == 3
|