tests: reduce test_beam_shape verbosity
This commit is contained in:
parent
3a2dd3697f
commit
8a4cc72485
@ -251,9 +251,9 @@ class GrayTest:
|
||||
plt.show()
|
||||
|
||||
for ref, cand in zip(ref, cand):
|
||||
with self.subTest(ray=(int(ref['j']), int(ref['k']))):
|
||||
self.assertAlmostEqual(ref['x'], cand['x'], 1)
|
||||
self.assertAlmostEqual(ref['y'], cand['y'], 1)
|
||||
ray = f"ray ({ref['j']:g},{ref['k']:g}) changed"
|
||||
self.assertAlmostEqual(ref['x'], cand['x'], 1, msg=ray)
|
||||
self.assertAlmostEqual(ref['y'], cand['y'], 1, msg=ray)
|
||||
|
||||
def test_error_biased(self):
|
||||
'''
|
||||
|
Loading…
Reference in New Issue
Block a user