summaryrefslogtreecommitdiffstats
path: root/test/socket_test.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2021-01-02 17:58:58 +0100
committerDavid Robillard <d@drobilla.net>2021-01-02 17:58:58 +0100
commit45a608b57f75a6e1f1d8f33a6423da5d4947502b (patch)
treede315f0e39b2d32697d44c4018b934e1f582fc73 /test/socket_test.cpp
parent045ba07debf32f643f5af7a3a4ee794f226ed22e (diff)
downloadraul-45a608b57f75a6e1f1d8f33a6423da5d4947502b.tar.gz
raul-45a608b57f75a6e1f1d8f33a6423da5d4947502b.tar.bz2
raul-45a608b57f75a6e1f1d8f33a6423da5d4947502b.zip
Make namespace name lowercase
Diffstat (limited to 'test/socket_test.cpp')
-rw-r--r--test/socket_test.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/socket_test.cpp b/test/socket_test.cpp
index e1638d6..964a8ae 100644
--- a/test/socket_test.cpp
+++ b/test/socket_test.cpp
@@ -29,7 +29,7 @@
int
main()
{
- using Socket = Raul::Socket;
+ using Socket = raul::Socket;
std::string unix_uri("unix:///tmp/raul_test_sock");
std::string tcp_uri("tcp://127.0.0.1:12345");
@@ -88,8 +88,8 @@ main()
}
// This is the child (client) process
- Raul::Socket unix_sock(Socket::Type::UNIX);
- Raul::Socket tcp_sock(Socket::Type::TCP);
+ raul::Socket unix_sock(Socket::Type::UNIX);
+ raul::Socket tcp_sock(Socket::Type::TCP);
assert(unix_sock.connect(unix_uri));
assert(tcp_sock.connect(tcp_uri));