Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
mgmacias95 committed Dec 2, 2024
1 parent c3b2fd4 commit 5f8b869
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,7 @@ def verify_analysis(analysis, status="queued"):
assert getattr(analysis, "status") == status


def test_scan_file_private(httpserver, private_scan): # pylint: disable=unused-argumen
def test_scan_file_private(httpserver, private_scan): # pylint: disable=unused-argument
"""Test synchronous private file scanning."""
with new_client(httpserver) as client:
with io.StringIO("test file content") as f:
Expand All @@ -581,7 +581,7 @@ def test_scan_file_private(httpserver, private_scan): # pylint: disable=unused-


@pytest.mark.asyncio
async def test_scan_file_private_async(httpserver, private_scan): # pylint: disable=unused-argumen
async def test_scan_file_private_async(httpserver, private_scan): # pylint: disable=unused-argument
"""Test asynchronous private file scanning."""
async with new_client(httpserver) as client:
with io.StringIO("test file content") as f:
Expand Down

0 comments on commit 5f8b869

Please sign in to comment.