diff --git a/tests/ClientTest.php b/tests/ClientTest.php index 1a1f3e1..65bc38f 100644 --- a/tests/ClientTest.php +++ b/tests/ClientTest.php @@ -75,6 +75,7 @@ public function testCreateAccount() $email = $this->faker->email(); $domain = $this->faker->domainName(); $plan = $this->faker->word(); + $ip = $this->faker->ipv4; $this->guzzleMockHandler->append(new Response()); @@ -92,6 +93,7 @@ public function testCreateAccount() 'contactemail' => $email, 'domain' => $domain, 'plan' => $plan, + 'ipaddy' => $ip, ], $postData); }