comparison test/line-continue.tst @ 17675:4e5c17b3294a

line-continue.tst: Remove incorrect test for line continuation in single-quoted string. * test/line-continue.tst: Remove incorrect test for line continuation in single-quoted string.
author Rik <rik@octave.org>
date Thu, 17 Oct 2013 10:44:36 -0700
parents 171e958d672e
children d63878346099
comparison
equal deleted inserted replaced
17674:dd125b5e8090 17675:4e5c17b3294a
56 56
57 # String continuation using '\' 57 # String continuation using '\'
58 %!assert (["abc\ 58 %!assert (["abc\
59 %! def"], "abc def") 59 %! def"], "abc def")
60 60
61 %!assert (['abc\
62 %! def'], "abc def")
63
64 %!test 61 %!test
65 %!assert (1 == 1 62 %!assert (1 == 1
66 %! && 2 == 2 63 %! && 2 == 2
67 %! || 3 == 5); 64 %! || 3 == 5);
68 65