Code formating.

This commit is contained in:
Romain Dorgueil
2017-10-22 18:05:39 +02:00
parent 28fe41c0bd
commit 3c453f0be7
11 changed files with 115 additions and 61 deletions

View File

@ -103,6 +103,7 @@ def test_node_dict_chained():
assert output[0] == {'id': 1, 'name': 'FOO'}
assert output[1] == {'id': 2, 'name': 'BAR'}
def test_node_tuple():
def f():
return 'foo', 'bar'
@ -126,6 +127,7 @@ def test_node_tuple():
assert output[0] == ('foo', 'bar')
assert output[1] == ('foo', 'baz')
def test_node_tuple_chained():
strategy = NaiveStrategy(GraphExecutionContextType=BufferingGraphExecutionContext)
@ -154,6 +156,7 @@ def test_node_tuple_chained():
assert output[0] == ('FOO', 'BAR')
assert output[1] == ('FOO', 'BAZ')
def test_node_tuple_dict():
def f():
return 'foo', 'bar', {'id': 1}