Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/frameworks/test_flask.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand All @@ -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 = {
Expand Down