summaryrefslogtreecommitdiffstats
path: root/test/uri_test.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-08-17 22:06:28 +0000
committerDavid Robillard <d@drobilla.net>2012-08-17 22:06:28 +0000
commitcd6209bcdd686b630bece9dc7b73e24584dbf769 (patch)
treec8295ad5056ad25ff72de6e40018fe86dbedbb6b /test/uri_test.cpp
parent882245f41683924d0465b5afac2f8bb5c3786e60 (diff)
downloadraul-cd6209bcdd686b630bece9dc7b73e24584dbf769.tar.gz
raul-cd6209bcdd686b630bece9dc7b73e24584dbf769.tar.bz2
raul-cd6209bcdd686b630bece9dc7b73e24584dbf769.zip
Update test suite to compile and pass again.
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@4718 a436a847-0d15-0410-975c-d299462d15a1
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)