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 384e88d commit 651bf4aCopy full SHA for 651bf4a
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
@@ -115,7 +115,7 @@ class TestDefinition(TestWorkflow):
115
"""
116
def run(self):
117
a = self.submit(increment, 1)
118
- assert isinstance(a, futures.Future)
+ assert isinstance(a, futures.AbstractFuture)
119
120
b = self.submit(double, a)
121
0 commit comments