summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/TestClient.hpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/TestClient.hpp b/tests/TestClient.hpp
index b23be973..ab69a4f9 100644
--- a/tests/TestClient.hpp
+++ b/tests/TestClient.hpp
@@ -22,9 +22,9 @@
#include <boost/variant/get.hpp>
-using namespace ingen;
+namespace ingen {
-class TestClient : public ingen::Interface
+class TestClient : public Interface
{
public:
explicit TestClient(Log& log) : _log(log) {}
@@ -52,4 +52,6 @@ private:
Log& _log;
};
+} // namespace ingen
+
#endif // INGEN_TESTCLIENT_HPP