Skip to content

Commit c904cb4

Browse files
Fixed variable name
1 parent 0f43d15 commit c904cb4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_basic.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ def test_points_lk():
3535

3636
def test_points_lk1d():
3737
video = pyidi.VideoReader(input_file='./data/data_synthetic.cih')
38-
lk = pyidi.DirectionalLucasKanade(video)
39-
lk.set_points(points=[(0, 1), (1, 1)])
38+
lk1d = pyidi.DirectionalLucasKanade(video)
39+
lk1d.set_points(points=[(0, 1), (1, 1)])
4040

4141
assert True
4242
# print('test_points_lk: passed')

0 commit comments

Comments
 (0)