fix findmax for three test cases #1 fix1 #14

Open
jiamengwu wants to merge 3 commits from jiamengwu/2025-plovdiv-testing-debugging:findmax into main
Showing only changes of commit 49a768595c - Show all commits

View file

@ -1,6 +1,14 @@
from first import times_3
def test_times_3_integer(): def test_times_3_integer():
pass value = 5
expected = 150
result = times_3(value)
assert result == expected
def test_times_3_string(): def test_times_3_string():
pass value = 'yupi'
expected = 'yupiyupiyupiyu'
result = times_3(value)
assert result == expected