fixed find maxima function first 3
This commit is contained in:
parent
952f8b97a5
commit
d03243efe4
2 changed files with 29 additions and 1 deletions
|
@ -1,6 +1,16 @@
|
|||
from first import times_3
|
||||
|
||||
def test_times_3_integer():
|
||||
pass
|
||||
|
||||
|
||||
def test_times_3_string():
|
||||
pass
|
||||
|
||||
def test_times_3_list():
|
||||
value = [1]
|
||||
expected = [1, 1, 1]
|
||||
|
||||
result = times_3(value)
|
||||
|
||||
assert result == expected
|
Loading…
Add table
Add a link
Reference in a new issue