Skip to content

Commit

Permalink
Include previously skipped tests
Browse files Browse the repository at this point in the history
  • Loading branch information
schlessera committed Jun 18, 2021
1 parent 4ec41d6 commit 0351570
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions tests/Transport/Base.php
Original file line number Diff line number Diff line change
Expand Up @@ -814,13 +814,6 @@ public function testAlternatePort() {
$this->assertSame('8080', $matches[1]);
}

/**
* This test will be skipped on PHP 8 as it would fail due to the use of an incompatible
* PHPUnit version. Once the test suite is compatible with PHPUnit 9, this "requires" can
* be removed.
*
* @requires PHP < 8
*/
public function testProgressCallback() {
$mock = $this->getMockBuilder('stdClass')->setMethods(array('progress'))->getMock();
$mock->expects($this->atLeastOnce())->method('progress');
Expand All @@ -834,13 +827,6 @@ public function testProgressCallback() {
Requests::get(httpbin('/get'), array(), $options);
}

/**
* This test will be skipped on PHP 8 as it would fail due to the use of an incompatible
* PHPUnit version. Once the test suite is compatible with PHPUnit 9, this "requires" can
* be removed.
*
* @requires PHP < 8
*/
public function testAfterRequestCallback() {
$mock = $this->getMockBuilder('stdClass')
->setMethods(array('after_request'))
Expand Down

0 comments on commit 0351570

Please sign in to comment.