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

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'test/classes/UrlTest.php')
-rw-r--r--test/classes/UrlTest.php15
1 files changed, 2 insertions, 13 deletions
diff --git a/test/classes/UrlTest.php b/test/classes/UrlTest.php
index 5708af34f6..37664eacb9 100644
--- a/test/classes/UrlTest.php
+++ b/test/classes/UrlTest.php
@@ -7,7 +7,6 @@ namespace PhpMyAdmin\Tests;
use PhpMyAdmin\Url;
use function is_string;
-use function method_exists;
use function parse_str;
use function str_repeat;
use function urldecode;
@@ -210,12 +209,7 @@ class UrlTest extends AbstractTestCase
$this->assertSame('0', $queryParams['pos']);
$this->assertTrue(is_string($queryParams['eq']));
$this->assertNotSame('', $queryParams['eq']);
- if (method_exists($this, 'assertMatchesRegularExpression')) {
- $this->assertMatchesRegularExpression('/^[a-zA-Z0-9-_=]+$/', $queryParams['eq']);
- } else {
- /** @psalm-suppress DeprecatedMethod */
- $this->assertRegExp('/^[a-zA-Z0-9-_=]+$/', $queryParams['eq']);
- }
+ $this->assertMatchesRegularExpression('/^[a-zA-Z0-9-_=]+$/', $queryParams['eq']);
$decrypted = Url::decryptQuery($queryParams['eq']);
$this->assertNotNull($decrypted);
@@ -236,12 +230,7 @@ class UrlTest extends AbstractTestCase
$encrypted = Url::encryptQuery($query);
$this->assertNotSame($query, $encrypted);
$this->assertNotSame('', $encrypted);
- if (method_exists($this, 'assertMatchesRegularExpression')) {
- $this->assertMatchesRegularExpression('/^[a-zA-Z0-9-_=]+$/', $encrypted);
- } else {
- /** @psalm-suppress DeprecatedMethod */
- $this->assertRegExp('/^[a-zA-Z0-9-_=]+$/', $encrypted);
- }
+ $this->assertMatchesRegularExpression('/^[a-zA-Z0-9-_=]+$/', $encrypted);
$decrypted = Url::decryptQuery($encrypted);
$this->assertSame($query, $decrypted);