We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30ac85d commit 053321aCopy full SHA for 053321a
requirements.dev.txt
test/synchronicity_test.py
@@ -2,7 +2,7 @@
2
import concurrent.futures
3
import inspect
4
from typing import Coroutine
5
-from unittest.mock import MagicMock, ANY
+from unittest.mock import MagicMock
6
7
import pytest
8
import time
@@ -493,9 +493,9 @@ async def get_self(self):
493
assert isinstance(self_from_aio_interface, BlockingFoo)
494
495
496
-
497
def test_no_input_translation(monkeypatch):
498
s = Synchronizer()
+
499
@s.create_blocking
500
def does_input_translation(arg: float) -> str:
501
return str(arg)
@@ -517,6 +517,7 @@ async def without_input_translation(arg: float) -> str:
517
518
def test_no_output_translation(monkeypatch):
519
520
521
522
523
0 commit comments