Skip to content

Commit 55bc774

Browse files
committed
Lint
1 parent 65224b8 commit 55bc774

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/real_user/test_stdio_limits.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ async def list_capabilities(self):
6565

6666
# Send a 70KB message - should fail with 1KB buffer
6767
large_msg = '{"jsonrpc":"2.0","method":"test","params":{"data":"' + "X" * LARGE_LINE_SIZE + '"}}\n'
68-
result = subprocess.run(
68+
result = subprocess.run( # noqa: S603
6969
[sys.executable, small_agent], input=large_msg, capture_output=True, text=True, timeout=2
7070
)
7171

@@ -90,7 +90,7 @@ async def list_capabilities(self):
9090
""")
9191

9292
# Same message, but with a buffer 3x the size - should handle it
93-
result = subprocess.run(
93+
result = subprocess.run( # noqa: S603
9494
[sys.executable, large_agent], input=large_msg, capture_output=True, text=True, timeout=2
9595
)
9696

0 commit comments

Comments
 (0)