From e72fc0a6da09414b2de2de713f00ca09dc1ca3bf Mon Sep 17 00:00:00 2001 From: Rick Ogden Date: Thu, 13 Jun 2019 13:15:47 +0100 Subject: [PATCH] Fixed test. --- tests/ClientTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ClientTest.php b/tests/ClientTest.php index eee145a..9f82b71 100644 --- a/tests/ClientTest.php +++ b/tests/ClientTest.php @@ -179,7 +179,7 @@ public function testGetEligibility(): void $this->assertSame('UNKNOWN', $eligibility[0]->getEligible()); $this->assertSame('O2', $eligibility[0]->getNetwork()->getBrand()); $this->assertSame('ELIGIBLE', $eligibility[1]->getEligible()); - $this->assertSame('EE', $eligibility[0]->getNetwork()->getBrand()); + $this->assertSame('EE', $eligibility[1]->getNetwork()->getBrand()); } protected function appendResponse(string $data, int $responseCode = 200): void