summaryrefslogtreecommitdiff
path: root/ext/bz2
diff options
context:
space:
mode:
authorMáté Kocsis <kocsismate@woohoolabs.com>2020-08-09 11:06:57 +0200
committerMáté Kocsis <kocsismate@woohoolabs.com>2020-08-09 22:03:36 +0200
commit7aacc705d03887c64a90489e367f4c40b46aa3c2 (patch)
treeec7388f82b37e8611c7513aa95678d7feae82329 /ext/bz2
parent05478e985eb50c473054b4f1bf174f48ead78784 (diff)
downloadphp-git-7aacc705d03887c64a90489e367f4c40b46aa3c2.tar.gz
Add many missing closing PHP tags to tests
Closes GH-5958
Diffstat (limited to 'ext/bz2')
-rw-r--r--ext/bz2/tests/bug51997.phpt1
-rw-r--r--ext/bz2/tests/with_files.phpt1
-rw-r--r--ext/bz2/tests/with_strings.phpt1
3 files changed, 3 insertions, 0 deletions
diff --git a/ext/bz2/tests/bug51997.phpt b/ext/bz2/tests/bug51997.phpt
index 6a8e513e7d..303e0b3b67 100644
--- a/ext/bz2/tests/bug51997.phpt
+++ b/ext/bz2/tests/bug51997.phpt
@@ -19,5 +19,6 @@ print bzread($bz, 10);
print bzread($bz);
bzclose($bz);
unlink($filename);
+?>
--EXPECT--
This is a test string.
diff --git a/ext/bz2/tests/with_files.phpt b/ext/bz2/tests/with_files.phpt
index 443a0713dd..e24e28211f 100644
--- a/ext/bz2/tests/with_files.phpt
+++ b/ext/bz2/tests/with_files.phpt
@@ -18,5 +18,6 @@ print bzread($bz, 10);
print bzread($bz);
bzclose($bz);
unlink($filename);
+?>
--EXPECT--
This is a test string.
diff --git a/ext/bz2/tests/with_strings.phpt b/ext/bz2/tests/with_strings.phpt
index 65db76beea..e04cc514a8 100644
--- a/ext/bz2/tests/with_strings.phpt
+++ b/ext/bz2/tests/with_strings.phpt
@@ -22,5 +22,6 @@ $tests = <<<TESTS
TESTS;
include(__DIR__ . '/../../../tests/quicktester.inc');
+?>
--EXPECT--
OK