8000 fix regression test · Z80coder/datalog-cpp@66ab130 · GitHub
[go: up one dir, main page]

Skip to content

Commit 66ab130

Browse files
committed
fix regression test
1 parent 4064061 commit 66ab130

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tests/variable_test.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@ bool freeVariableTest() {
1111
bool boundVariableTest() {
1212
Variable<int> intVar;
1313
intVar.bind(0);
14-
// break this
15-
//return intVar.isBound();
16-
return !intVar.isBound();
14+
return intVar.isBound();
1715
}
1816

1917
TEST_CASE( "An new variable is unbound", "[variable]" ) {

0 commit comments

Comments
 (0)
0