diff --git a/tests/test_numpy.py b/tests/test_numpy.py index f9ddba4..73f99e3 100644 --- a/tests/test_numpy.py +++ b/tests/test_numpy.py @@ -44,7 +44,7 @@ def test_contents_html(self): self.assertGreater(len(res), 10) for value in np.nditer(mat): - self.assertIn(f"{value}", res) + self.assertIn(f">{value}", res) if __name__ == '__main__':