Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions tests/Transport/BaseTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -906,13 +906,23 @@ public function testAlternateNameSupport() {
* humanmade.com (owned by Human Made and used with permission) points to
* CloudFront, and will fail if SNI isn't sent.
*
* {@internal Skipped for the time being. The above no longer holds: the host serves the
* same certificate whether SNI is sent or not, so a transport which stopped sending it
* would still pass, and the host has meanwhile started refusing requests outright.
* See https://github.com/WordPress/Requests/issues/1077.}
*
* @dataProvider dataSNISupport
*
* @param array $options Additional options to pass.
*
* @return void
*/
public function testSNISupport($options) {
$this->markTestSkipped(
'This test does not verify SNI support anymore.'
. ' See https://github.com/WordPress/Requests/issues/1077'
);

if ($this->skip_https) {
$this->markTestSkipped('SSL support is not available.');
return;
Expand Down