We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c586455 commit 2302486Copy full SHA for 2302486
1 file changed
tests/test_coadds.py
@@ -615,8 +615,9 @@ def test_coaddInputs(self):
615
for position, _ in self.test_positions:
616
ccds = inputs.subset_containing_ccds(position, None)
617
visits = inputs.subset_containing_visits(position, None)
618
- self.assertEqual(len(ccds), 1)
619
- self.assertEqual(len(visits), 1)
+ with self.subTest(position=position):
+ self.assertEqual(len(ccds), 1)
620
+ self.assertEqual(len(visits), 1)
621
622
def test_borders(self):
623
"""Test that the borders are populated correctly on stitching."""
0 commit comments