Skip to content

Commit 142f6ba

Browse files
Rename a variable in one of the tests as its name "concat" is no longer allowed
1 parent 4cd4fd2 commit 142f6ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/org/sosy_lab/java_smt/test/StringFormulaManagerTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -265,10 +265,10 @@ public void testStringPrefixSuffixConcat() throws SolverException, InterruptedEx
265265
// FIXME: Princess will timeout on this test
266266
assume().that(solverToUse()).isNotEqualTo(Solvers.PRINCESS);
267267

268-
// check whether "prefix + suffix == concat"
268+
// check whether "prefix + suffix == concatenated"
269269
StringFormula prefix = smgr.makeVariable("prefix");
270270
StringFormula suffix = smgr.makeVariable("suffix");
271-
StringFormula concat = smgr.makeVariable("concat");
271+
StringFormula concat = smgr.makeVariable("concatenated");
272272

273273
assertThatFormula(
274274
bmgr.and(

0 commit comments

Comments
 (0)