We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent feab19b commit 900bc84Copy full SHA for 900bc84
1 file changed
tests/system/HTTP/IncomingRequestTest.php
@@ -728,7 +728,7 @@ public function testGetIPAddressThruProxy()
728
$this->assertSame($expected, $this->request->getIPAddress());
729
}
730
731
- public function testGetIPAddressThruProxyInvalid()
+ public function testGetIPAddressThruProxyInvalidIPAddress()
732
{
733
$_SERVER['HTTP_X_FORWARDED_FOR'] = '123.456.23.123';
734
$expected = '10.0.1.200';
@@ -779,7 +779,7 @@ public function testGetIPAddressThruProxySubnet()
779
780
781
782
- public function testGetIPAddressThruProxyOutofSubnet()
+ public function testGetIPAddressThruProxyOutOfSubnet()
783
784
$expected = '192.168.5.21';
785
$_SERVER['REMOTE_ADDR'] = $expected;
0 commit comments