summaryrefslogtreecommitdiffstats
path: root/test/socket_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/socket_test.cpp')
-rw-r--r--test/socket_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/socket_test.cpp b/test/socket_test.cpp
index d6a7b15..8dd4aff 100644
--- a/test/socket_test.cpp
+++ b/test/socket_test.cpp
@@ -27,8 +27,8 @@ using namespace Raul;
int
main(int argc, char** argv)
{
- Raul::URI unix_uri("unix:///tmp/raul_test_sock");
- Raul::URI tcp_uri("tcp://127.0.0.1:12345");
+ std::string unix_uri("unix:///tmp/raul_test_sock");
+ std::string tcp_uri("tcp://127.0.0.1:12345");
Raul::Socket unix_server_sock(Socket::Type::UNIX);
Raul::Socket tcp_server_sock(Socket::Type::TCP);