Skip to content

Commit 69ef4c7

Browse files
authored
Merge pull request #4 from php-http/Nyholm-patch-1
Do not skip tests
2 parents 98653a2 + 6c797fd commit 69ef4c7

File tree

2 files changed

+1
-14
lines changed

2 files changed

+1
-14
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"require-dev": {
2323
"phpunit/phpunit": "^6.0",
2424
"amphp/phpunit-util": "^1",
25-
"php-http/client-integration-tests": "^0.6.0",
25+
"php-http/client-integration-tests": "^0.6.2",
2626
"php-http/message": "^1.6"
2727
},
2828
"provide": {

tests/ClientTest.php

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,4 @@ protected function createHttpAdapter()
1717

1818
return new Client($client);
1919
}
20-
21-
/**
22-
* @dataProvider requestProvider
23-
* @group integration
24-
*/
25-
public function testSendRequest($method, $uri, array $headers, $body)
26-
{
27-
if ($method === 'TRACE') {
28-
$this->markTestSkipped('Currently skipped, because Artax refuses to send bodies for TRACE requests');
29-
}
30-
31-
parent::testSendRequest($method, $uri, $headers, $body);
32-
}
3320
}

0 commit comments

Comments
 (0)