Skip to content

Commit

Permalink
* added mbc test
Browse files Browse the repository at this point in the history
  • Loading branch information
o-murphy committed Oct 11, 2023
1 parent 29acee2 commit 446f06c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ def test_mbc_valid(self):

for mach, cd in reference:
idx = machs.index(mach)
self.assertAlmostEqual(cds[idx], cd, 3)
with self.subTest(mach=mach):
self.assertAlmostEqual(cds[idx], cd, 3)


class TestInterface(unittest.TestCase):
Expand Down

0 comments on commit 446f06c

Please sign in to comment.