diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-08-01 17:16:23 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-08-01 17:16:23 +0200 |
commit | 1c25545bb03ea074b5871be3234bf0d1be20a6a3 (patch) | |
tree | a09b6e2bfd98eacd93edb7ba6047a61cdadeccdc /doc | |
parent | 1782bedcd6ad1a57f009b5c6914839e89eb41d94 (diff) | |
download | dabmod-1c25545bb03ea074b5871be3234bf0d1be20a6a3.tar.gz dabmod-1c25545bb03ea074b5871be3234bf0d1be20a6a3.tar.bz2 dabmod-1c25545bb03ea074b5871be3234bf0d1be20a6a3.zip |
Minor typo in zmq-ctrl tests
Diffstat (limited to 'doc')
-rw-r--r-- | doc/zmq-ctrl/cpp/test/ctrl_test.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/zmq-ctrl/cpp/test/ctrl_test.cpp b/doc/zmq-ctrl/cpp/test/ctrl_test.cpp index fdfd35a..cfbaf1a 100644 --- a/doc/zmq-ctrl/cpp/test/ctrl_test.cpp +++ b/doc/zmq-ctrl/cpp/test/ctrl_test.cpp @@ -2,7 +2,7 @@ * This is a test program for the zmq ctrl API of the odr-dabmod. * * Copyright (c) 2015 by Jörgen Scott (jorgen.scott@paneda.se) - + * * This file is part of CtrlTest. * * ODR-DabMod is free software: you can redistribute it and/or modify @@ -18,7 +18,7 @@ * You should have received a copy of the GNU General Public License * along with ODR-DabMod. If not, see <http://www.gnu.org/licenses/>. **/ -#define BOOST_TEST_MODULE "C++ unit tests for odr-mod zmq ctrl" +#define BOOST_TEST_MODULE "C++ unit tests for ODR-DabMod ZMQ Remote Control" #include <boost/test/unit_test.hpp> #include "OdrModCtrl.hpp" @@ -30,13 +30,13 @@ struct TemplateVars zmq::context_t context; COdrModCtrl modCtrl; - // NOTE: Make sure the odr-dabmod is started before running the test and + // NOTE: Make sure odr-dabmod is started before running the test and // that the zmq endpoint matches. TemplateVars() : context(1), modCtrl(&context, "tcp://127.0.0.1:9400", 1000) {} ~TemplateVars() {} }; -// Note. The odr-mod do not validate parameters therefore there are no tests +// Note. ODR-DabMod does not validate parameters therefore there are no tests // made for setting invalid parameters. BOOST_FIXTURE_TEST_SUITE(test_template1, TemplateVars) |