From 5106c47dbec484e394f00c144f7ade75f9aabf2a Mon Sep 17 00:00:00 2001
From: Martin Hierholzer <martin.hierholzer@desy.de>
Date: Tue, 25 Sep 2018 13:51:35 +0200
Subject: [PATCH] fixed a test using the wrong dmap file (why did this ever
 work???)

---
 tests/executables_src/testIllegalNetworks.cc | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/tests/executables_src/testIllegalNetworks.cc b/tests/executables_src/testIllegalNetworks.cc
index 4c50c237..18c9b042 100644
--- a/tests/executables_src/testIllegalNetworks.cc
+++ b/tests/executables_src/testIllegalNetworks.cc
@@ -72,7 +72,7 @@ struct TestApplication : public ctk::Application {
 
 BOOST_AUTO_TEST_CASE_TEMPLATE( testTwoScalarPollPushAccessors, T, test_types ) {
 
-  ChimeraTK::BackendFactory::getInstance().setDMapFilePath("dummy.dmap");
+  ChimeraTK::BackendFactory::getInstance().setDMapFilePath("test.dmap");
   TestApplication<T> app;
 
   app.dev("/MyModule/Variable") >> app.testModule.consumingPush;
@@ -126,7 +126,7 @@ BOOST_AUTO_TEST_CASE_TEMPLATE( testTwoFeeders, T, test_types ) {
 
 BOOST_AUTO_TEST_CASE_TEMPLATE( testTooManyPollingConsumers, T, test_types ) {
 
-  ChimeraTK::BackendFactory::getInstance().setDMapFilePath("dummy.dmap");
+  ChimeraTK::BackendFactory::getInstance().setDMapFilePath("test.dmap");
 
   TestApplication<T> app;
 
@@ -146,7 +146,7 @@ BOOST_AUTO_TEST_CASE_TEMPLATE( testTooManyPollingConsumers, T, test_types ) {
 
 BOOST_AUTO_TEST_CASE_TEMPLATE( testDifferentNrElements, T, test_types ) {
 
-  ChimeraTK::BackendFactory::getInstance().setDMapFilePath("dummy.dmap");
+  ChimeraTK::BackendFactory::getInstance().setDMapFilePath("test.dmap");
 
   TestApplication<T> app;
 
@@ -165,7 +165,7 @@ BOOST_AUTO_TEST_CASE_TEMPLATE( testDifferentNrElements, T, test_types ) {
 
 BOOST_AUTO_TEST_CASE_TEMPLATE( testMergeNetworks, T, test_types ) {
 
-  ChimeraTK::BackendFactory::getInstance().setDMapFilePath("dummy.dmap");
+  ChimeraTK::BackendFactory::getInstance().setDMapFilePath("test.dmap");
 
   TestApplication<T> app;
   app.testModule.feedingPush >> app.testModule.consumingPush;
@@ -185,7 +185,7 @@ BOOST_AUTO_TEST_CASE_TEMPLATE( testMergeNetworks, T, test_types ) {
 
 BOOST_AUTO_TEST_CASE_TEMPLATE( testConstantTrigger, T, test_types ) {
 
-  ChimeraTK::BackendFactory::getInstance().setDMapFilePath("dummy.dmap");
+  ChimeraTK::BackendFactory::getInstance().setDMapFilePath("test.dmap");
 
   TestApplication<T> app;
   app.dev("/MyModule/Variable") [ ctk::VariableNetworkNode::makeConstant<int>(true) ] >> app.testModule.consumingPush;
-- 
GitLab