File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1111 strategy :
1212 matrix :
1313 os :
14- - ubuntu-22 .04
14+ - ubuntu-24 .04
1515 - windows-2022
1616 php :
17+ - 8.4
18+ - 8.3
1719 - 8.2
1820 - 8.1
1921 - 8.0
3638 extensions : sqlite3
3739 coverage : xdebug
3840 ini-file : development
39- # disable JIT on PHP 8.2 with Xdebug: JIT is incompatible with third party extensions that override zend_execute_ex(). JIT disabled.
40- ini-values : ${{ matrix.php == 8.2 && 'opcache.jit_buffer_size=0' || '' }}
4141 - run : composer install
4242 - run : vendor/bin/phpunit --coverage-text --coverage-clover=clover.xml
4343 if : ${{ matrix.php >= 7.3 }}
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ public function testOpenReturnsPromiseWhichFulfillsWithConnectionForMemoryPathAn
5252 public function testOpenReturnsPromiseWhichRejectsWithExceptionWhenPathIsInvalid ()
5353 {
5454 $ factory = new Factory ();
55- $ promise = $ factory ->open ('/dev/foobar ' );
55+ $ promise = $ factory ->open ('/dev/foo/bar ' );
5656
5757 $ promise ->then (function (DatabaseInterface $ db ) {
5858 echo 'open. ' ;
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ public function testCtorThrowsForInvalidPath()
1515 // legacy PHPUnit
1616 $ this ->setExpectedException ('Exception ' );
1717 }
18- new BlockingDatabase ('/dev/foobar ' );
18+ new BlockingDatabase ('/dev/foo/bar ' );
1919 }
2020
2121 public function testExecReturnsRejectedPromiseForInvalidQuery ()
You can’t perform that action at this time.
0 commit comments