Server geändert

This commit is contained in:
aschwarz
2023-04-25 13:17:57 +02:00
parent f1b11efb5d
commit f93fa77db7
603 changed files with 2951 additions and 2951 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'
);
}