We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c5569c commit 9a1e162Copy full SHA for 9a1e162
tests/futures/test_futures.py
@@ -3,7 +3,7 @@
3
4
5
from simpleflow import futures
6
-from simpleflow.futures import Future
+from simpleflow.swf.futures import Future
7
8
9
def test_future_init_state():
tests/test_dataflow.py
@@ -118,7 +118,7 @@ class TestDefinition(TestWorkflow):
118
"""
119
def run(self):
120
a = self.submit(increment, 1)
121
- assert isinstance(a, futures.Future)
+ assert isinstance(a, futures.AbstractFuture)
122
123
b = self.submit(double, a)
124
0 commit comments