Skip to content

Commit da60498

Browse files
committed
change 104 to 102
1 parent ef1985e commit da60498

2 files changed

Lines changed: 21 additions & 10 deletions

File tree

.travis.yml

Lines changed: 20 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,24 @@
11
language: php
2-
php:
3-
- 5.4
4-
- 5.5
5-
- 5.6
6-
- 7.0
7-
- 7.1
8-
- 7.2
9-
- nightly
10-
- hhvm
2+
matrix:
3+
include:
4+
- php: 5.3
5+
dist: precise
6+
- php: 5.4
7+
dist: trusty
8+
- php: 5.5
9+
dist: trusty
10+
- php: 5.6
11+
dist: trusty
12+
- php: 7.0
13+
dist: trusty
14+
- php: 7.1
15+
dist: trusty
16+
- php: 7.2
17+
dist: trusty
18+
- php: nightly
19+
dist: trusty
20+
- php: hhvm
21+
dist: trusty
1122
before_script:
1223
- composer install
1324
script: ./vendor/bin/phpunit

tests/TarTestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -698,7 +698,7 @@ public function testGetArchiveWithBzipCompress()
698698
$tar->addFile("$dir/zero.txt", 'zero.txt');
699699
$file = $tar->getArchive();
700700

701-
$this->assertEquals(104, strlen($file)); // 1 header block + 2 footer blocks
701+
$this->assertEquals(102, strlen($file)); // 1 header block + 2 footer blocks
702702
}
703703

704704
public function testSaveWithCompressionAuto()

0 commit comments

Comments
 (0)