Skip to content

Commit d86cb72

Browse files
authored
Using assertEqual instead of assertEquals. (#3619)
`assertEquals` is deprecated (but still is a synonym).
1 parent ada48db commit d86cb72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/google-cloud-logging/tests/unit/handlers/test__helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def test_no_context_header(self):
101101
response = req.get_response(self.create_app())
102102
trace_id = json.loads(response.body)
103103

104-
self.assertEquals(None, trace_id)
104+
self.assertEqual(None, trace_id)
105105

106106
def test_valid_context_header(self):
107107
import webob

0 commit comments

Comments
 (0)