diff --git a/tests/test_graph_spec.py b/tests/test_graph_spec.py index 1051fcd..f82931c 100644 --- a/tests/test_graph_spec.py +++ b/tests/test_graph_spec.py @@ -90,8 +90,11 @@ def test_graph_spec_subgraph_version(): testing_graph_spec_sub_graph = graph_builder.graph_specs.get('Testing_Graph', None) for source in testing_graph_spec_sub_graph.sources: assert source.source_version == source.id + "_v1" - assert testing_graph_spec_sub_graph.graph_version == "0f69593274e4bf24" - assert testing_graph_spec.graph_version == "a802ebc12e481d8a" + # TODO it would be nice to check against real version ids here + # but without pinning specific versions in the graph spec the versions could/should change, + # currently supplementation version is not specifiable, so it's impossible + assert testing_graph_spec_sub_graph.graph_version is not None + assert testing_graph_spec.graph_version is not None # make sure a graph spec with an invalid subgraph fails with the appropriate exception