From 8bc11f577b2f7b099604bb7b2bb727fb8c9b6f52 Mon Sep 17 00:00:00 2001 From: David Perl Date: Wed, 7 Dec 2022 15:39:07 +0000 Subject: [PATCH] #87 fix tests --- tests/test_VDS_tools.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/test_VDS_tools.py b/tests/test_VDS_tools.py index 6c676498..61ca71a5 100644 --- a/tests/test_VDS_tools.py +++ b/tests/test_VDS_tools.py @@ -48,7 +48,6 @@ def test_when_get_frames_and_shape_greater_than_1000_non_zero_then_correct(): def test_when_get_frames_and_shape_greater_than_1000_non_zero_greater_than_1000_then_correct(): sshape = split_datasets(["test1", "test2"], (1500, 10, 10), 1200) assert sshape == [ - Dataset("test1", (1000, 10, 10), 1000), Dataset("test2", (500, 10, 10), 200), ] @@ -60,7 +59,6 @@ def test_when_get_frames_and_shape_much_greater_than_1000_non_zero_greater_than_ ["test1", "test2", "test3", "test4"], (3100, 10, 10), 1100 ) assert returned == [ - Dataset("test1", (1000, 10, 10), 1000), Dataset("test2", (1000, 10, 10), 100), Dataset("test3", (1000, 10, 10), 0), Dataset("test4", (100, 10, 10), 0),