Skip to content

Commit 06ce55c

Browse files
committed
TermPrinter: test for correct let var naming
1 parent 98684b9 commit 06ce55c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/unit/test_TermPrinter.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ class TermPrinterTest : public ::testing::Test {
1313

1414
PTRef buildExampleFormula1() {
1515
SRef sort = logic.declareUninterpretedSort("U");
16-
PTRef x = logic.mkVar(sort, "x");
17-
PTRef y = logic.mkVar(sort, "y");
16+
PTRef x = logic.mkVar(sort, "?20");
17+
PTRef y = logic.mkVar(sort, "????");
1818
SymRef g_s = logic.declareFun("g", sort, {sort, sort});
1919
SymRef h_s = logic.declareFun("h", sort, {sort});
2020
SymRef f_s = logic.declareFun("f", sort, {sort, sort, sort});

0 commit comments

Comments
 (0)