diff options
author | Joas Schilling <213943+nickvergessen@users.noreply.github.com> | 2022-10-27 15:57:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-27 15:57:58 +0200 |
commit | d007088cf5d89e29065991e0cbe2c890dfa13d96 (patch) | |
tree | 20b5029fbf1909a0d63a553ad686c45b57842afe /tests/lib | |
parent | 5b77675ee90e75f5796521ef633d1675ac9bd149 (diff) | |
parent | d4b9b010b0cb753a86af63cb917020e790555036 (diff) | |
download | nextcloud-server-d007088cf5d89e29065991e0cbe2c890dfa13d96.tar.gz nextcloud-server-d007088cf5d89e29065991e0cbe2c890dfa13d96.zip |
Merge pull request #34847 from nextcloud/refactor/local-address-checker-method-capitalization
Rename LocalAddressChecker methods to lower case
Diffstat (limited to 'tests/lib')
-rw-r--r-- | tests/lib/Http/Client/ClientTest.php | 10 | ||||
-rw-r--r-- | tests/lib/Http/Client/LocalAddressCheckerTest.php | 8 |
2 files changed, 9 insertions, 9 deletions
diff --git a/tests/lib/Http/Client/ClientTest.php b/tests/lib/Http/Client/ClientTest.php index 25d4749df57..fa2374aeb7e 100644 --- a/tests/lib/Http/Client/ClientTest.php +++ b/tests/lib/Http/Client/ClientTest.php @@ -203,7 +203,7 @@ class ClientTest extends \Test\TestCase { $this->expectException(LocalServerException::class); $this->localAddressChecker ->expects($this->once()) - ->method('ThrowIfLocalAddress') + ->method('throwIfLocalAddress') ->with('http://' . $uri) ->will($this->throwException(new LocalServerException())); @@ -218,7 +218,7 @@ class ClientTest extends \Test\TestCase { $this->expectException(LocalServerException::class); $this->localAddressChecker ->expects($this->once()) - ->method('ThrowIfLocalAddress') + ->method('throwIfLocalAddress') ->with('http://' . $uri) ->will($this->throwException(new LocalServerException())); @@ -233,7 +233,7 @@ class ClientTest extends \Test\TestCase { $this->expectException(LocalServerException::class); $this->localAddressChecker ->expects($this->once()) - ->method('ThrowIfLocalAddress') + ->method('throwIfLocalAddress') ->with('http://' . $uri) ->will($this->throwException(new LocalServerException())); @@ -248,7 +248,7 @@ class ClientTest extends \Test\TestCase { $this->expectException(LocalServerException::class); $this->localAddressChecker ->expects($this->once()) - ->method('ThrowIfLocalAddress') + ->method('throwIfLocalAddress') ->with('http://' . $uri) ->will($this->throwException(new LocalServerException())); @@ -263,7 +263,7 @@ class ClientTest extends \Test\TestCase { $this->expectException(LocalServerException::class); $this->localAddressChecker ->expects($this->once()) - ->method('ThrowIfLocalAddress') + ->method('throwIfLocalAddress') ->with('http://' . $uri) ->will($this->throwException(new LocalServerException())); diff --git a/tests/lib/Http/Client/LocalAddressCheckerTest.php b/tests/lib/Http/Client/LocalAddressCheckerTest.php index 8c8e64eddf9..024c52b3705 100644 --- a/tests/lib/Http/Client/LocalAddressCheckerTest.php +++ b/tests/lib/Http/Client/LocalAddressCheckerTest.php @@ -47,7 +47,7 @@ class LocalAddressCheckerTest extends \Test\TestCase { */ public function testThrowIfLocalAddress($uri) : void { $this->expectException(LocalServerException::class); - $this->localAddressChecker->ThrowIfLocalAddress('http://' . $uri); + $this->localAddressChecker->throwIfLocalAddress('http://' . $uri); } /** @@ -55,7 +55,7 @@ class LocalAddressCheckerTest extends \Test\TestCase { * @param string $uri */ public function testThrowIfLocalAddressGood($uri) : void { - $this->localAddressChecker->ThrowIfLocalAddress('http://' . $uri); + $this->localAddressChecker->throwIfLocalAddress('http://' . $uri); $this->assertTrue(true); } @@ -66,7 +66,7 @@ class LocalAddressCheckerTest extends \Test\TestCase { */ public function testThrowIfLocalIpBad($ip) : void { $this->expectException(LocalServerException::class); - $this->localAddressChecker->ThrowIfLocalIp($ip); + $this->localAddressChecker->throwIfLocalIp($ip); } /** @@ -74,7 +74,7 @@ class LocalAddressCheckerTest extends \Test\TestCase { * @param string $ip */ public function testThrowIfLocalIpGood($ip) : void { - $this->localAddressChecker->ThrowIfLocalIp($ip); + $this->localAddressChecker->throwIfLocalIp($ip); $this->assertTrue(true); } |