From 38b8332d96782d8704b9665bca65d724c5de5ca5 Mon Sep 17 00:00:00 2001 From: Adam Lugowski Date: Fri, 1 Sep 2023 00:05:10 -0700 Subject: [PATCH] Fix test fail --- tests/test_numpy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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__':