summaryrefslogtreecommitdiffstats
path: root/test/uri_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/uri_test.cpp')
-rw-r--r--test/uri_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/uri_test.cpp b/test/uri_test.cpp
index d3b9a99..a65fb70 100644
--- a/test/uri_test.cpp
+++ b/test/uri_test.cpp
@@ -14,9 +14,9 @@
along with Raul. If not, see <http://www.gnu.org/licenses/>.
*/
+#include <cassert>
#include <iostream>
-#include "raul/log.hpp"
#include "raul/URI.hpp"
using namespace std;
@@ -27,7 +27,7 @@ main()
{
#define CHECK(cond) \
do { if (!(cond)) { \
- error << "Test failed: " << (cond) << endl; \
+ cerr << "Test failed: " << (cond) << endl; \
assert(0); \
return 1; \
} } while (0)