From 6ed3c33f74eac451136736f963a99da6e2dc9ec7 Mon Sep 17 00:00:00 2001 From: matthias-k Date: Mon, 22 Jan 2024 21:26:45 +0100 Subject: [PATCH] Update tests/test_precomputed_models.py --- tests/test_precomputed_models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_precomputed_models.py b/tests/test_precomputed_models.py index 49254ca..1b25a57 100644 --- a/tests/test_precomputed_models.py +++ b/tests/test_precomputed_models.py @@ -37,6 +37,7 @@ def stimuli_with_filenames(tmpdir): filenames = [] stimuli = [] for i in range(3): + # TODO: change back to stimulus_... once this is supported again filename = tmpdir.join('_stimulus_{:04d}.png'.format(i)) stimuli.append(np.random.randint(low=0, high=255, size=(100, 100, 3), dtype=np.uint8)) filenames.append(str(filename))