summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar chmaria <unknown>2014-11-01 14:59:23 +0100
committerGravatar chmaria <unknown>2014-11-01 14:59:23 +0100
commit02e2b99ab18659ea2626e2be5fa369b7f1795334 (patch)
tree6d44ab53e6ccff47b54805cb9d5eae0bc2a72669
parent6e5fb70941531435489c1dc533d7caea9120a3d5 (diff)
Minor fix in test dafny2/SnapshotableTrees.dfy.
-rw-r--r--Test/dafny2/SnapshotableTrees.dfy4
1 files changed, 2 insertions, 2 deletions
diff --git a/Test/dafny2/SnapshotableTrees.dfy b/Test/dafny2/SnapshotableTrees.dfy
index 96d3707f..b64660b3 100644
--- a/Test/dafny2/SnapshotableTrees.dfy
+++ b/Test/dafny2/SnapshotableTrees.dfy
@@ -1,4 +1,4 @@
-// RUN: %dafny /compile:0 /dprint:"%t.dprint" /vcsMaxKeepGoingSplits:10 "%s" > "%t"
+// RUN: %dafny /compile:0 /dprint:"%t.dprint" "%s" > "%t"
// RUN: %diff "%s.expect" "%t"
// Rustan Leino, September 2011.
@@ -266,7 +266,7 @@ class Node
if (left == n.left) {
r, pos := n, -1;
} else {
- // assert n.left != null ==> forall e :: e in n.left.Contents ==> e < n.data;
+ assert n.left != null ==> forall e :: e in n.left.Contents ==> e < n.data;
// assert forall e :: e in left.Contents ==> e < n.data;
r := new Node.Build(left, n.data, n.right);
}