summaryrefslogtreecommitdiff
path: root/test/unit/context/context_black.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit/context/context_black.h')
-rw-r--r--test/unit/context/context_black.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/unit/context/context_black.h b/test/unit/context/context_black.h
index 3659d3494..258c3fd9b 100644
--- a/test/unit/context/context_black.h
+++ b/test/unit/context/context_black.h
@@ -19,11 +19,11 @@
#include <iostream>
#include <vector>
-#include "base/cvc4_assert.h"
+#include "base/exception.h"
#include "context/cdlist.h"
#include "context/cdo.h"
#include "context/context.h"
-
+#include "test_utils.h"
using namespace std;
using namespace CVC4;
@@ -106,8 +106,8 @@ private:
d_context->push();
d_context->pop();
#ifdef CVC4_ASSERTIONS
- TS_ASSERT_THROWS(d_context->pop(), AssertionException&);
- TS_ASSERT_THROWS(d_context->pop(), AssertionException&);
+ TS_UTILS_EXPECT_ABORT(d_context->pop());
+ TS_UTILS_EXPECT_ABORT(d_context->pop());
#endif /* CVC4_ASSERTIONS */
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback