Skip to content

Commit 4a93400

Browse files
shivammathurcmb69
andauthored
Fix Windows test for openssl-3.5 upgrade (#19384)
* Fix Windows test for openssl-3.5 upgrade * Update ext/openssl/tests/check_default_conf_path.phpt Co-authored-by: Christoph M. Becker <[email protected]> --------- Co-authored-by: Christoph M. Becker <[email protected]>
1 parent a9ab62d commit 4a93400

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/openssl/tests/check_default_conf_path.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ ob_end_clean();
2121
preg_match(",Openssl default config [^ ]* (.*),", $info, $m);
2222

2323
if (isset($m[1])) {
24-
var_dump(str_replace('/', '\\', strtolower($m[1])));
24+
var_dump(str_replace('\\/', '\\', strtolower($m[1])));
2525
} else {
2626
echo $info;
2727
}

0 commit comments

Comments
 (0)