Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Steur <tsteur@users.noreply.github.com>2020-06-25 02:45:45 +0300
committerGitHub <noreply@github.com>2020-06-25 02:45:45 +0300
commitc39f9e3c7ddcb407b8fc67808122ef78c285f940 (patch)
tree59ccf789773df122c2083f04579e2952395d6b52 /tests/PHPUnit/Unit
parent51d6fe74c1ec759fe350b8f23e4d703d23fed97d (diff)
Fix tests (#16110)
Diffstat (limited to 'tests/PHPUnit/Unit')
-rw-r--r--tests/PHPUnit/Unit/NonceTest.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/PHPUnit/Unit/NonceTest.php b/tests/PHPUnit/Unit/NonceTest.php
index 48393482ed..06aa2c6337 100644
--- a/tests/PHPUnit/Unit/NonceTest.php
+++ b/tests/PHPUnit/Unit/NonceTest.php
@@ -23,9 +23,9 @@ class NonceTest extends \PHPUnit_Framework_TestCase
{
return array(
// HTTP_HOST => expected
- array('example.com', array('http://example.com', 'https://example.com')),
- array('example.com:80', array('http://example.com', 'https://example.com')),
- array('example.com:443', array('http://example.com', 'https://example.com')),
+ array('example.com', array('http://example.com', 'https://example.com', 'http://example.com:80', 'https://example.com:443', )),
+ array('example.com:80', array('http://example.com', 'https://example.com', 'http://example.com:80', 'https://example.com:80')),
+ array('example.com:443', array('http://example.com', 'https://example.com', 'https://example.com:443')),
array('example.com:8080', array('http://example.com', 'https://example.com', 'http://example.com:8080', 'https://example.com:8080')),
);
}