diff options
| author | Joshua Harlow <harlowja@yahoo-inc.com> | 2015-08-06 17:18:45 -0700 |
|---|---|---|
| committer | Joshua Harlow <harlowja@yahoo-inc.com> | 2015-09-18 17:39:04 +0000 |
| commit | 64583e075f41a5a239de15d6d521ce4bfde69a7d (patch) | |
| tree | 528626615bc03fb6cf5b4cd1169774e718c532a9 /taskflow/tests/unit/patterns | |
| parent | f8624a136b77c68dbf3e75406f2903586cf0762b (diff) | |
| download | taskflow-64583e075f41a5a239de15d6d521ce4bfde69a7d.tar.gz | |
Use graphs as the underlying structure of patterns
This unifies all the patterns to be graph based so
that they are more uniform and there underlying constraints
are more easy to understand (taskflow basically processes
graphs).
Change-Id: Ib2ab07c1c87165cf40a06508128010887f658391
Diffstat (limited to 'taskflow/tests/unit/patterns')
| -rw-r--r-- | taskflow/tests/unit/patterns/test_linear_flow.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/taskflow/tests/unit/patterns/test_linear_flow.py b/taskflow/tests/unit/patterns/test_linear_flow.py index fa39e17..05f4253 100644 --- a/taskflow/tests/unit/patterns/test_linear_flow.py +++ b/taskflow/tests/unit/patterns/test_linear_flow.py @@ -138,4 +138,4 @@ class LinearFlowTest(test.TestCase): for (u, v, data) in f.iter_links(): self.assertTrue(u in tasks) self.assertTrue(v in tasks) - self.assertDictEqual(lf._LINK_METADATA, data) + self.assertDictEqual({'invariant': True}, data) |
