Skip to content

Commit f4b1103

Browse files
committed
fixup! Fix failing unit test
1 parent 8cfb463 commit f4b1103

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/unit/test_client.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,9 +118,10 @@ def assert_headers(headers):
118118
assert headers[constants.HEADER_USER] == user
119119
assert headers[constants.HEADER_SESSION] == ""
120120
assert headers[constants.HEADER_TIMEZONE] == timezone
121+
assert headers[constants.HEADER_CLIENT_CAPABILITIES] == "PARAMETRIC_DATETIME"
121122
assert headers[accept_encoding_header] == accept_encoding_value
122123
assert headers[client_info_header] == client_info_value
123-
assert len(headers.keys()) == 9
124+
assert len(headers.keys()) == 10
124125

125126
req.post("URL")
126127
_, post_kwargs = post.call_args

0 commit comments

Comments
 (0)