summaryrefslogtreecommitdiffstats
path: root/test/path_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/path_test.cpp')
-rw-r--r--test/path_test.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/path_test.cpp b/test/path_test.cpp
index 3b7b61b..9391063 100644
--- a/test/path_test.cpp
+++ b/test/path_test.cpp
@@ -21,15 +21,15 @@
#include <iostream>
#include <string>
-using namespace std;
-using namespace Raul;
-
int
main()
{
+ using Path = Raul::Path;
+ using Symbol = Raul::Symbol;
+
#define CHECK(cond) \
do { if (!(cond)) { \
- cerr << "Test failed: " << (cond) << endl; \
+ std::cerr << "Test failed: " << (cond) << std::endl; \
return 1; \
} } while (0)