diff options
author | Rasmus Lerdorf <rasmus@php.net> | 2012-12-13 16:13:37 -0800 |
---|---|---|
committer | Rasmus Lerdorf <rasmus@php.net> | 2012-12-13 16:13:37 -0800 |
commit | eecdb4c254bafe5fc53b1e06055482944cd3560f (patch) | |
tree | 13b8f6f0d14bd633909b780b3eb9d114237bf715 /ext | |
parent | a11606b18fd20be1048a858eb5011fb7117855a9 (diff) | |
download | php-git-eecdb4c254bafe5fc53b1e06055482944cd3560f.tar.gz |
Fix broken test
This was missing a %s for the path here
Diffstat (limited to 'ext')
-rw-r--r-- | ext/session/tests/bug60860.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/session/tests/bug60860.phpt b/ext/session/tests/bug60860.phpt index 12310205aa..223fb35905 100644 --- a/ext/session/tests/bug60860.phpt +++ b/ext/session/tests/bug60860.phpt @@ -14,4 +14,4 @@ echo "ok\n"; --EXPECTF-- Warning: session_start(): user session functions not defined in %s on line 3 -Fatal error: session_start(): Failed to initialize storage module: user (path: ) in %s on line 3 +Fatal error: session_start(): Failed to initialize storage module: user (path: %s) in %s on line 3 |