Skip to content

Commit 9cac233

Browse files
committed
Add missing assertEqual in test_client
1 parent b7eb065 commit 9cac233

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tests/test_client.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,7 @@ def test_v5_with_json(self):
175175
actual = duo_client.client.canonicalize(
176176
'POST', 'foO.BaR52.cOm', '/Foo/BaR2/qux', params, 'Tue, 17 Nov 2020 14:12:00',
177177
sig_version=5, body=body, additional_headers=headers)
178+
self.assertEqual(actual, expected)
178179

179180
def test_invalid_signature_version_raises(self):
180181
params = duo_client.client.Client.canon_json(JSON_BODY)
@@ -287,7 +288,7 @@ def test_hmac_sha512(self):
287288
expected = 'Basic ' + expected
288289
self.assertEqual(actual,
289290
expected)
290-
291+
291292
class TestRequest(unittest.TestCase):
292293
""" Tests for the request created by api_call and json_api_call. """
293294
# usful args for testing

0 commit comments

Comments
 (0)