summaryrefslogtreecommitdiff
path: root/test/unit/parser/parser_builder_black.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit/parser/parser_builder_black.h')
-rw-r--r--test/unit/parser/parser_builder_black.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/parser/parser_builder_black.h b/test/unit/parser/parser_builder_black.h
index 78e1be748..44bb9293b 100644
--- a/test/unit/parser/parser_builder_black.h
+++ b/test/unit/parser/parser_builder_black.h
@@ -99,7 +99,7 @@ class ParserBuilderBlack : public CxxTest::TestSuite
Parser *parser = builder.build();
TS_ASSERT(parser != NULL);
- Expr e = parser->nextExpression();
+ api::Term e = parser->nextExpression();
TS_ASSERT(e.isNull());
delete parser;
@@ -110,7 +110,7 @@ class ParserBuilderBlack : public CxxTest::TestSuite
Parser *parser = builder.build();
TS_ASSERT(parser != NULL);
- Expr e = parser->nextExpression();
+ api::Term e = parser->nextExpression();
TS_ASSERT_EQUALS(e, d_solver->getExprManager()->mkConst(true));
e = parser->nextExpression();
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback