mirror of
https://github.com/correl/typesafe-monads.git
synced 2024-11-14 11:09:36 +00:00
Remove Future from generic monad testing
The Future tests already re-implement all of the normal tests while also handling their asynchronous nature. Including them in the generic tests leave futures unawaited.
This commit is contained in:
parent
cbe71da3f8
commit
efa13e6f08
1 changed files with 1 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
import pytest # type: ignore
|
||||
from typing import Type
|
||||
from monads import Maybe, List, Result, Future
|
||||
from monads import Maybe, List, Result
|
||||
|
||||
|
||||
@pytest.fixture(scope="module", params=[Maybe, List, Result])
|
||||
|
|
Loading…
Reference in a new issue