Server geändert

This commit is contained in:
aschwarz
2023-04-25 13:13:17 +02:00
parent a68b637415
commit 02c150b5f6
638 changed files with 2989 additions and 2989 deletions

View File

@ -32,37 +32,37 @@ class HTMLPurifier_URISchemeTest extends HTMLPurifier_URIHarness
public function test_http_regular()
{
$this->assertValidation(
'http://example.com/?s=q#fragment'
'https://example.com/?s=q#fragment'
);
}
public function test_http_uppercase()
{
$this->assertValidation(
'http://example.com/FOO'
'https://example.com/FOO'
);
}
public function test_http_removeDefaultPort()
{
$this->assertValidation(
'http://example.com:80',
'http://example.com'
'https://example.com:80',
'https://example.com'
);
}
public function test_http_removeUserInfo()
{
$this->assertValidation(
'http://bob@example.com',
'http://example.com'
'https://bob@example.com',
'https://example.com'
);
}
public function test_http_preserveNonDefaultPort()
{
$this->assertValidation(
'http://example.com:8080'
'https://example.com:8080'
);
}