Skip to content

Commit 900bc84

Browse files
kenjisMGatner
authored andcommitted
test: fix test names
1 parent feab19b commit 900bc84

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/system/HTTP/IncomingRequestTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -728,7 +728,7 @@ public function testGetIPAddressThruProxy()
728728
$this->assertSame($expected, $this->request->getIPAddress());
729729
}
730730

731-
public function testGetIPAddressThruProxyInvalid()
731+
public function testGetIPAddressThruProxyInvalidIPAddress()
732732
{
733733
$_SERVER['HTTP_X_FORWARDED_FOR'] = '123.456.23.123';
734734
$expected = '10.0.1.200';
@@ -779,7 +779,7 @@ public function testGetIPAddressThruProxySubnet()
779779
$this->assertSame($expected, $this->request->getIPAddress());
780780
}
781781

782-
public function testGetIPAddressThruProxyOutofSubnet()
782+
public function testGetIPAddressThruProxyOutOfSubnet()
783783
{
784784
$expected = '192.168.5.21';
785785
$_SERVER['REMOTE_ADDR'] = $expected;

0 commit comments

Comments
 (0)