Skip to content

Commit bfb729e

Browse files
fix wrong attribute in test
1 parent d8ad653 commit bfb729e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/python/systemds/scuro/utils/static_variables.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
PY_LIST_SLOT_BYTES = 8
2727
NP_ARRAY_HEADER_BYTES = 112
2828

29-
DEBUG = True
29+
DEBUG = False
3030

3131
global_rng = np.random.default_rng(42)
3232

src/main/python/tests/scuro/test_data_loaders.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def test_video_loader_stats(self):
102102
self.assertEqual(stats.max_length, 60)
103103
self.assertEqual(stats.max_width, 160)
104104
self.assertEqual(stats.max_height, 120)
105-
self.assertEqual(stats.max_num_channels, 3)
105+
self.assertEqual(stats.max_channels, 3)
106106

107107
def test_text_loader_loads_all_instances(self):
108108
loader = TextLoader(

0 commit comments

Comments
 (0)