Skip to content
This repository was archived by the owner on Mar 31, 2020. It is now read-only.

Commit 29efd42

Browse files
committed
Tests passing
1 parent e977acd commit 29efd42

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/test/test_coord.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from ..animation import Coord
1+
from ..animate import Coord
22

33
coord1 = Coord(1, 1)
44
coord2 = Coord(1, 1)
@@ -30,8 +30,8 @@ def test_pow():
3030

3131

3232
def test_truediv():
33-
assert coord1 / coord2 == Coord(1, 1)
34-
assert Coord(2, 2) / 3 == Coord(1, 1)
33+
assert coord1 / Coord(2, 2) == Coord(0.5, 0.5)
34+
assert coord1 / 2 == Coord(0.5, 0.5)
3535

3636

3737
def test_floordiv():

0 commit comments

Comments
 (0)