From 85d7568374cb422cd5a34fb5d5f6ca72be90ceaf Mon Sep 17 00:00:00 2001 From: Joe Ranalli Date: Wed, 9 Oct 2024 09:10:40 -0400 Subject: [PATCH] Add TODO to note importance of singleton testing --- tests/synthirrad/test_cloudfield.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/synthirrad/test_cloudfield.py b/tests/synthirrad/test_cloudfield.py index d40137f..6e7760a 100644 --- a/tests/synthirrad/test_cloudfield.py +++ b/tests/synthirrad/test_cloudfield.py @@ -9,6 +9,7 @@ class TestFieldGeneration: + # TODO add tests for size 1 and size 0 to guarantee that they produce correct output def test_random_at_scale_identity(self): base, interp = cloudfield._random_at_scale((10,10), (10, 10), False) assert base.shape == (10, 10)