summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/unit/expr/node_black.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/unit/expr/node_black.h b/test/unit/expr/node_black.h
index 40545e5e8..36a92ec2f 100644
--- a/test/unit/expr/node_black.h
+++ b/test/unit/expr/node_black.h
@@ -547,11 +547,12 @@ public:
Node o = NodeBuilder<>() << n << n << kind::XOR;
stringstream sstr;
+ sstr << Node::dag(false);
n.toStream(sstr);
TS_ASSERT(sstr.str() == "(AND w (OR x y) z)");
sstr.str(string());
- o.toStream(sstr);
+ o.toStream(sstr, -1, false, 0);
TS_ASSERT(sstr.str() == "(XOR (AND w (OR x y) z) (AND w (OR x y) z))");
sstr.str(string());
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback