diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/wg2nd_test.cpp (renamed from test/wg2sd_test.cpp) | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/wg2sd_test.cpp b/test/wg2nd_test.cpp index 5d57ac9..39b0766 100644 --- a/test/wg2sd_test.cpp +++ b/test/wg2nd_test.cpp @@ -1,17 +1,17 @@ #include "utest.h" -#include "wg2sd.hpp" +#include "wg2nd.hpp" #include <sstream> #include <array> -namespace wg2sd { +namespace wg2nd { extern bool _is_default_route(std::string const & cidr); extern bool _is_ipv4_route(std::string const & cidr); }; -using namespace wg2sd; +using namespace wg2nd; -UTEST(wg2sd, ip_helpers) { +UTEST(wg2nd, ip_helpers) { std::array<std::string, 8> default_routes = { "0/0", @@ -121,7 +121,7 @@ const char * INVALID_CONFIG = ( ); -UTEST(wg2sd, parses_config) { +UTEST(wg2nd, parses_config) { // CONFIG1 std::istringstream ss { CONFIG1 }; |