Skip to content

Commit c293794

Browse files
committed
wording, formatting
1 parent efb1b8b commit c293794

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tests/integrations/quart/test_quart.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515

1616

1717
def quart_app_factory():
18-
# These imports are inlined because the test_quart_flask_patch testcase tests
19-
# behavior that is triggered by importing a package before any Quart imports
20-
# happen
18+
# These imports are inlined because the `test_quart_flask_patch` testcase
19+
# tests behavior that is triggered by importing a package before any Quart
20+
# imports happen
2121
from quart import Quart
2222

2323
try:
@@ -74,12 +74,12 @@ def integration_enabled_params(request):
7474
@pytest.mark.asyncio
7575
@pytest.mark.forked
7676
async def test_quart_flask_patch(sentry_init, capture_events, reset_integrations):
77-
# This testcase is forked because import quart_flask_patch needs to run
77+
# This testcase is forked because `import quart_flask_patch` needs to run
7878
# before anything else Quart-related is imported (since it monkeypatches
7979
# some things) and we don't want this to affect other testcases.
8080
#
81-
# It's also important that this testcase is run before any other testcase
82-
# that uses quart_app_factory.
81+
# It's also important this testcase be run before any other testcases
82+
# that uses `quart_app_factory`.
8383
import quart_flask_patch # noqa: F401
8484

8585
app = quart_app_factory()

0 commit comments

Comments
 (0)