diff options
author | Christoph M. Becker <cmbecker69@gmx.de> | 2018-06-22 00:01:51 +0200 |
---|---|---|
committer | Christoph M. Becker <cmbecker69@gmx.de> | 2018-06-22 00:01:51 +0200 |
commit | 23ca95aa3e8b138572717c012e65ec657340fefe (patch) | |
tree | 12cd74595714057eab91023ef1a090923514cd2d | |
parent | 71d16feebbb38f69007d8b7bec44afeb916281fb (diff) | |
download | php-git-23ca95aa3e8b138572717c012e65ec657340fefe.tar.gz |
Fix line endings in new PHPT
-rw-r--r-- | ext/pcre/tests/bug76512.phpt | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/ext/pcre/tests/bug76512.phpt b/ext/pcre/tests/bug76512.phpt index cd14ad814d..cb8a9fa95f 100644 --- a/ext/pcre/tests/bug76512.phpt +++ b/ext/pcre/tests/bug76512.phpt @@ -1,10 +1,10 @@ ---TEST--
-Bug #76512 (\w no longer includes unicode characters)
---FILE--
-<?php
-var_dump(preg_match('/\w/u', 'ä'));
-?>
-===DONE===
---EXPECT--
-int(1)
-===DONE===
+--TEST-- +Bug #76512 (\w no longer includes unicode characters) +--FILE-- +<?php +var_dump(preg_match('/\w/u', 'ä')); +?> +===DONE=== +--EXPECT-- +int(1) +===DONE=== |