Skip to content

Commit 4320f5b

Browse files
committed
Fix shadowed function tests
1 parent 8e76a8a commit 4320f5b

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

tests/test_functions.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,12 @@ def test_round_callmain(x, y, expected):
6767

6868

6969
@pytest.mark.parametrize('x,y,expected', DivisionData.FLOOR_VALS)
70-
def test_round_callmain(x, y, expected):
70+
def test_floor(x, y, expected):
7171
assert divide.floor(x, y) == expected
7272

73+
7374
@pytest.mark.parametrize('x,y,expected', DivisionData.CEIL_VALS)
74-
def test_round_callmain(x, y, expected):
75+
def test_ceil(x, y, expected):
7576
assert divide.ceil(x, y) == expected
7677

7778

0 commit comments

Comments
 (0)