Skip to content

Commit 2a61128

Browse files
committed
lint again
1 parent 7d728f9 commit 2a61128

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

tests/integrations/rq/test_rq.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,9 @@ def test_error_has_trace_context_if_tracing_disabled(
150150
assert error_event["contexts"]["trace"]
151151

152152

153-
def test_tracing_enabled(sentry_init, capture_events, DictionaryContaining): # noqa: N803
153+
def test_tracing_enabled(
154+
sentry_init, capture_events, DictionaryContaining # noqa: N803
155+
):
154156
sentry_init(integrations=[RqIntegration()], traces_sample_rate=1.0)
155157
events = capture_events()
156158

tests/integrations/stdlib/test_httplib.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,4 +371,6 @@ def test_http_timeout(monkeypatch, sentry_init, capture_envelopes):
371371

372372
span = transaction["spans"][0]
373373
assert span["op"] == "http.client"
374-
assert span["description"] == f"GET http://localhost:{PORT}/top-chasers" # noqa: E231
374+
assert (
375+
span["description"] == f"GET http://localhost:{PORT}/top-chasers" # noqa: E231
376+
)

tests/tracing/test_integration_tests.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,7 @@ def test_basic(sentry_init, capture_events, sample_rate):
5151

5252

5353
@pytest.mark.parametrize("sample_rate", [0.0, 1.0])
54-
def test_continue_trace(
55-
sentry_init, capture_envelopes, sample_rate
56-
): # noqa:N803
54+
def test_continue_trace(sentry_init, capture_envelopes, sample_rate): # noqa:N803
5755
"""
5856
Ensure data is actually passed along via headers, and that they are read
5957
correctly.

0 commit comments

Comments
 (0)