diff --git a/tests/frameworks/test_flask.py b/tests/frameworks/test_flask.py index d561d196..a0469d99 100644 --- a/tests/frameworks/test_flask.py +++ b/tests/frameworks/test_flask.py @@ -121,7 +121,7 @@ def test_get_request_with_suppression(self): self.assertFalse(any(map(lambda x: x.l != 0, spans))) # Assert that there are no spans in the recorded list - self.assertEquals(spans, []) + self.assertEqual(spans, []) def test_get_request_with_suppression_and_w3c(self): headers = { @@ -146,7 +146,7 @@ def test_get_request_with_suppression_and_w3c(self): self.assertFalse(any(map(lambda x: x.l != 0, spans))) # Assert that there are no spans in the recorded list - self.assertEquals(spans, []) + self.assertEqual(spans, []) def test_synthetic_request(self): headers = {