[Nice-commit] Nice/testsuite/compiler/syntax expressions.testsuite,1.5,1.6
Brought to you by:
bonniot
From: <ar...@us...> - 2003-12-17 14:33:42
|
Update of /cvsroot/nice/Nice/testsuite/compiler/syntax In directory sc8-pr-cvs1:/tmp/cvs-serv23996/F:/nice/testsuite/compiler/syntax Modified Files: expressions.testsuite Log Message: Allow unescaped " in multiline strings. Index: expressions.testsuite =================================================================== RCS file: /cvsroot/nice/Nice/testsuite/compiler/syntax/expressions.testsuite,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** expressions.testsuite 1 Oct 2003 18:11:39 -0000 1.5 --- expressions.testsuite 17 Dec 2003 14:33:39 -0000 1.6 *************** *** 26,27 **** --- 26,31 ---- def\nghi xyz""".equals("abc\n def\nghi\n xyz"); + + /// PASS + String x = """ " """; + assert x.equals(" \" "); |