summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/system/boilerplate.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/system/boilerplate.cpp b/test/system/boilerplate.cpp
index b4e20d063..cea610b86 100644
--- a/test/system/boilerplate.cpp
+++ b/test/system/boilerplate.cpp
@@ -31,6 +31,6 @@ int main() {
SmtEngine smt(&em);
Result r = smt.query(em.mkConst(true));
- return r == Result::VALID ? 0 : 1;
+ return (Result::VALID == r) ? 0 : 1;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback