diff options
author | Máté Kocsis <kocsismate@woohoolabs.com> | 2020-05-26 14:10:57 +0200 |
---|---|---|
committer | Máté Kocsis <kocsismate@woohoolabs.com> | 2020-07-10 21:05:28 +0200 |
commit | d30cd7d7e7ddd0d06c18c47f43c7d2ee00de24a1 (patch) | |
tree | 33fdeac65ef66eb3db6066af396763fae391bef9 /sapi/cli | |
parent | 2ad75ba78440eeffbde35a12c666d5f55aaf631a (diff) | |
download | php-git-d30cd7d7e7ddd0d06c18c47f43c7d2ee00de24a1.tar.gz |
Review the usage of apostrophes in error messages
Closes GH-5590
Diffstat (limited to 'sapi/cli')
-rw-r--r-- | sapi/cli/tests/005.phpt | 2 | ||||
-rw-r--r-- | sapi/cli/tests/006.phpt | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sapi/cli/tests/005.phpt b/sapi/cli/tests/005.phpt index ab616d779f..a1d51088ab 100644 --- a/sapi/cli/tests/005.phpt +++ b/sapi/cli/tests/005.phpt @@ -16,7 +16,7 @@ var_dump(`"$php" -n --rc exception`); echo "Done\n"; ?> --EXPECT-- -string(40) "Exception: Class unknown does not exist +string(42) "Exception: Class "unknown" does not exist " string(183) "Class [ <internal:Core> class stdClass ] { diff --git a/sapi/cli/tests/006.phpt b/sapi/cli/tests/006.phpt index ad4fa457f5..eac5380178 100644 --- a/sapi/cli/tests/006.phpt +++ b/sapi/cli/tests/006.phpt @@ -24,9 +24,9 @@ var_dump(`$php -n --re pcre`); echo "Done\n"; ?> --EXPECTF-- -string(44) "Exception: Extension unknown does not exist +string(46) "Exception: Extension "unknown" does not exist " -string(37) "Exception: Extension does not exist +string(39) "Exception: Extension "" does not exist " string(%d) "Extension [ <persistent> extension #%d pcre version %s ] { |