Skip to content
Snippets Groups Projects
Commit fc2060fe authored by Martin Killenberg's avatar Martin Killenberg
Browse files

fixed wrong variable name in test

parent d6d6926b
No related branches found
No related tags found
No related merge requests found
......@@ -308,7 +308,7 @@ BOOST_AUTO_TEST_CASE(testConstants){
TestApplication app;
ctk::VariableNetworkNode::makeConstant<int32_t>(true, 18) >> app.dev1("/MyModule/actuator");
app.cs("/PleaseWriteToMe", typeid(int), 1) >> app.dev1("/Integers/signed32", typeid(int), 1);
app.cs("PleaseWriteToMe", typeid(int), 1) >> app.dev1("/Integers/signed32", typeid(int), 1);
ctk::TestFacility test;
test.runApplication();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment