Skip to content

Commit 8fb563c

Browse files
style: fix black formatting for referer test assertions
Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 56bc94f commit 8fb563c

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tests/test_trigger.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -661,7 +661,9 @@ def test_extract_http_tags_referer_case_insensitive(self):
661661

662662
event = {"headers": {"Referer": "https://example.com/capitalized"}}
663663
http_tags = extract_http_tags(event)
664-
self.assertEqual(http_tags.get("http.referer"), "https://example.com/capitalized")
664+
self.assertEqual(
665+
http_tags.get("http.referer"), "https://example.com/capitalized"
666+
)
665667

666668
event = {"headers": {"referer": "https://example.com/lowercase"}}
667669
http_tags = extract_http_tags(event)

0 commit comments

Comments
 (0)