diff --git a/test_sample.py b/test_sample.py index d5084e3..19fb5aa 100644 --- a/test_sample.py +++ b/test_sample.py @@ -3,5 +3,11 @@ def func(x): return x + 2 +def func2(x): + return x + 3 + +def test_success(): + assert func(3) == 5 + def test_success(): - assert func(3) == 5 \ No newline at end of file + assert func2(2) == 5 \ No newline at end of file