Skip to content

Commit

Permalink
[ci] Fix last remaining overflow on graph tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jcelerier committed Oct 30, 2022
1 parent 41a87d2 commit c890e1e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/Dataflow/DataflowTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,8 @@ TEST_CASE("test_tcl_addr", "test_tcl_addr")

TestDevice test;

ossia::tc_graph g;
auto gg = std::make_unique<tc_graph>();
auto& g = *gg;
auto n1 = std::make_shared<node_mock>(
ossia::inlets{new value_inlet(*test.a)},
ossia::outlets{new value_outlet(*test.b)});
Expand Down

0 comments on commit c890e1e

Please sign in to comment.