summaryrefslogtreecommitdiff
path: root/test/unit/parser/parser_white.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit/parser/parser_white.h')
-rw-r--r--test/unit/parser/parser_white.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/unit/parser/parser_white.h b/test/unit/parser/parser_white.h
index 270061c29..d0959cf6f 100644
--- a/test/unit/parser/parser_white.h
+++ b/test/unit/parser/parser_white.h
@@ -150,9 +150,9 @@ class ParserWhite : public CxxTest::TestSuite {
parserState->mkVar("b",(Type*)d_exprManager->booleanType());
parserState->mkVar("c",(Type*)d_exprManager->booleanType());
/* t, u, v: TYPE */
- Type *t = parserState->newSort("t");
- Type *u = parserState->newSort("u");
- Type *v = parserState->newSort("v");
+ Type *t = parserState->mkSort("t");
+ Type *u = parserState->mkSort("u");
+ Type *v = parserState->mkSort("v");
/* f : t->u; g: u->v; h: v->t; */
parserState->mkVar("f", (Type*)d_exprManager->mkFunctionType(t,u));
parserState->mkVar("g", (Type*)d_exprManager->mkFunctionType(u,v));
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback