Skip to content

Commit bd1bd38

Browse files
committed
Use *.data for fixture files
1 parent 16e910c commit bd1bd38

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

ext/zlib/tests/bug73944.phpt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ Bug #73944: Dictionary option of intflate_init() does not work
66
<?php
77

88
$in = inflate_init(ZLIB_ENCODING_RAW, array('dictionary' => str_repeat("\00", 32768)));
9-
$a = inflate_add($in, file_get_contents(__DIR__.'/bug73944_fixture1'));
9+
$a = inflate_add($in, file_get_contents(__DIR__.'/bug73944_fixture_1.data'));
1010
echo '1 block: '.strlen($a).PHP_EOL;
1111

1212
$in = inflate_init(ZLIB_ENCODING_RAW, array('dictionary' => $a));
13-
$b = inflate_add($in, file_get_contents(__DIR__.'/bug73944_fixture2'));
13+
$b = inflate_add($in, file_get_contents(__DIR__.'/bug73944_fixture_2.data'));
1414
echo '2 block: '.($b === false ? 'failed' : strlen($b)).PHP_EOL;
1515

1616
?>

0 commit comments

Comments
 (0)