diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/test-flowgraph.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test-flowgraph.cpp b/tests/test-flowgraph.cpp index 021d6dd..469d816 100644 --- a/tests/test-flowgraph.cpp +++ b/tests/test-flowgraph.cpp @@ -51,7 +51,7 @@ TEST_F(FlowGraphTest, build_graph) {   std::shared_ptr<Node> free1{ std::make_shared<DeallocateDynamic>(pointer) };   graph.push_back(free1); - std::shared_ptr<Node> destroyScope{std::make_shared<DestroyScopeOp>()}; + std::shared_ptr<Node> destroyScope{std::make_shared<DestroyScopeOp>(createScope->scope())};   graph.push_back(destroyScope);  }  | 
