summaryrefslogtreecommitdiff
path: root/test/regress/regress1/strings/replaceall-len.smt2
diff options
context:
space:
mode:
Diffstat (limited to 'test/regress/regress1/strings/replaceall-len.smt2')
-rw-r--r--test/regress/regress1/strings/replaceall-len.smt24
1 files changed, 2 insertions, 2 deletions
diff --git a/test/regress/regress1/strings/replaceall-len.smt2 b/test/regress/regress1/strings/replaceall-len.smt2
index 448d8e98f..3c0d7e8e5 100644
--- a/test/regress/regress1/strings/replaceall-len.smt2
+++ b/test/regress/regress1/strings/replaceall-len.smt2
@@ -1,10 +1,10 @@
-(set-info :smt-lib-version 2.5)
+(set-info :smt-lib-version 2.6)
(set-logic ALL)
(set-info :status sat)
(set-option :strings-exp true)
(set-option :strings-fmf true)
(set-option :produce-models true)
(declare-fun x () String)
-(assert (= (str.len (str.replaceall x "B" "CC")) (+ (str.len x) 2)))
+(assert (= (str.len (str.replace_all x "B" "CC")) (+ (str.len x) 2)))
(assert (> (str.len x) 2))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback