Skip to content

Commit 8a62090

Browse files
committed
update
1 parent fceaabf commit 8a62090

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ezsql-macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
operating-system: [macos-latest]
20-
php-versions: ['7.3']
20+
php-versions: ['7.2', '7.3', '7.4']
2121

2222
steps:
2323
- name: Checkout
@@ -55,7 +55,7 @@ jobs:
5555
- name: Install dependencies
5656
run: composer update
5757
- name: Test with phpunit
58-
run: vendor/bin/phpunit --coverage-clover=coverage.xml
58+
run: ./vendor/bin/phpunit
5959
- name: Submit code coverage
6060
uses: codecov/codecov-action@v1
6161
with:

tests/mysqli/mysqliTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public function testSelect()
9090
$this->assertTrue($result);
9191

9292
$this->errors = array();
93-
//set_error_handler(array($this, 'errorHandler'));
93+
set_error_handler(array($this, 'errorHandler'));
9494
$this->assertTrue($this->object->select(''));
9595
$this->object->disconnect();
9696
$this->assertFalse($this->object->select('notest'));

0 commit comments

Comments
 (0)