File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -260,6 +260,7 @@ Changelog
2602600.18.2 (Unreleased)
261261~~~~~~~~~~~~~~~~~~~
262262- Fix asyncio auto mode not marking static methods. `#295 <https://github.com/pytest-dev/pytest-asyncio/issues/295 >`_
263+ - Fix a compatibility issue with Hypothesis 6.39.0. `#302 <https://github.com/pytest-dev/pytest-asyncio/issues/302 >`_
263264
264265
2652660.18.1 (22-02-10)
Original file line number Diff line number Diff line change @@ -432,8 +432,8 @@ def wrap_in_sync(
432432 func = raw_func
433433
434434 @functools .wraps (func )
435- def inner (** kwargs ):
436- coro = func (** kwargs )
435+ def inner (* args , * *kwargs ):
436+ coro = func (* args , * *kwargs )
437437 if not inspect .isawaitable (coro ):
438438 pyfuncitem .warn (
439439 pytest .PytestWarning (
You can’t perform that action at this time.
0 commit comments