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
260
260
0.18.2 (Unreleased)
261
261
~~~~~~~~~~~~~~~~~~~
262
262
- 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 >`_
263
264
264
265
265
266
0.18.1 (22-02-10)
Original file line number Diff line number Diff line change @@ -432,8 +432,8 @@ def wrap_in_sync(
432
432
func = raw_func
433
433
434
434
@functools .wraps (func )
435
- def inner (** kwargs ):
436
- coro = func (** kwargs )
435
+ def inner (* args , * *kwargs ):
436
+ coro = func (* args , * *kwargs )
437
437
if not inspect .isawaitable (coro ):
438
438
pyfuncitem .warn (
439
439
pytest .PytestWarning (
You can’t perform that action at this time.
0 commit comments