Skip to content

Commit 41cd3d1

Browse files
committed
[t-lTBFjwvE] Upgrade travis PHP to diaginose deprecated warnings
1 parent 02504f3 commit 41cd3d1

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
dist: trusty
1+
dist: bionic
22
sudo: required
33

44
language: php
55

66
php:
7-
- 7.1
7+
- 7.4.28
88

99
install:
1010
- composer validate --no-check-all --no-check-publish
1111
- composer install
1212

13-
script: ./vendor/bin/phpunit --coverage-clover=coverage.xml Test/
13+
script: ./vendor/bin/phpunit Test\
1414

1515
after_success:
1616
- bash <(curl -s https://codecov.io/bash)

Test/FilePropertyTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
namespace Test;
44

5-
65
use PHPUnit\Framework\TestCase;
76

87
class FilePropertyTest extends TestCase {

Test/XLSXWriterTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,6 @@ public function testFreezeCells($freeze_cols, $freeze_rows, $expected_active_cel
152152

153153
$selections = $sheet_view->selection;
154154
for ($i = 0; $i < count($expected_active_cells); $i++) {
155-
$this->assertNotEmpty($selections[$i]);
156155
$this->assertEquals($expected_active_cells[$i]['cell'], $selections[$i]['activeCell']);
157156
$this->assertEquals($expected_active_cells[$i]['cell'], $selections[$i]['sqref']);
158157
$this->assertEquals($expected_active_cells[$i]['pane'], $selections[$i]['pane']);

0 commit comments

Comments
 (0)