Skip to content

Commit

Permalink
fix two broken test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
bschmalhofer committed Feb 22, 2009
1 parent 170436e commit 452be7a
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions t/php/string.t
Expand Up @@ -299,8 +299,8 @@ echo 'no variable expansion: $dummy', "\n";
echo 'no variable expansion in twiddles: {$dummy}', "\n";
echo 'backslash at end: \\', "\n";
echo 'backslash not at end: \dummy', "\n";
echo 'backslash before a space: \ ', "\n";
echo 'escaped backslash before a space: \\ ', "\n";
echo 'backslash before a space: \ xxxxx', "\n";
echo 'escaped backslash before a space: \\ yyyyy', "\n";
echo 'not a newline: \n', "\n";
echo 'not a carriage return: \r', "\n";
echo 'not a tab: \t', "\n";
Expand All @@ -323,8 +323,8 @@ no variable expansion: $dummy
no variable expansion in twiddles: {$dummy}
backslash at end: \
backslash not at end: \dummy
backslash before a space: \
escaped backslash before a space: \
backslash before a space: \ xxxxx
escaped backslash before a space: \ yyyyy
not a newline: \n
not a carriage return: \r
not a tab: \t
Expand All @@ -350,8 +350,8 @@ $dummy = 'INTERPOLATED';
echo "variable expansion: $dummy", "\n";
echo "backslash at end: \\", "\n";
echo "backslash not at end: \dummy", "\n";
echo "backslash before a space: \ ", "\n";
echo "escaped backslash before a space: \\ ", "\n";
echo "backslash before a space: \ XXXXX", "\n";
echo "escaped backslash before a space: \\ YYYYY", "\n";
echo "a newline: \n", "\n";
echo "a tab: \t", "\n";
echo "an octal: \101", "\n";
Expand All @@ -369,11 +369,11 @@ CODE
variable expansion: INTERPOLATED
backslash at end: \
backslash not at end: \dummy
backslash before a space: \
escaped backslash before a space: \
a newline:
backslash before a space: \ XXXXX
escaped backslash before a space: \ YYYYY
a newline:

a tab:
a tab:
an octal: A
an hex: A
single quote: '
Expand Down

0 comments on commit 452be7a

Please sign in to comment.