mirror of
https://github.com/rancher/os.git
synced 2025-07-06 11:36:15 +00:00
7 lines
75 B
Python
7 lines
75 B
Python
def func(x):
|
|
return x + 1
|
|
|
|
|
|
def test_answer():
|
|
assert func(3) == 4
|