Skip to content

Commit

Permalink
Fix line length
Browse files Browse the repository at this point in the history
  • Loading branch information
benoit74 committed Oct 26, 2023
1 parent 18ed6ca commit b89f57b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ def test_user_agent():
if record.rec_type == "request":
print(record.http_headers)
ua = record.http_headers.get_header("User-Agent")
# remove 'and ua != "undefined"' once https://github.com/webrecorder/browsertrix-crawler/pull/420 is released / used by us
# remove 'and ua != "undefined"' once
# https://github.com/webrecorder/browsertrix-crawler/pull/420 is
# released / used by us
if ua and ua != "undefined":
assert "Mozilla" in ua
assert ua.endswith(" +Zimit test@example.com")
Expand Down

0 comments on commit b89f57b

Please sign in to comment.