From fe854e1b215ec19aeb9b0b01686103eb37469e22 Mon Sep 17 00:00:00 2001 From: Darin Randal Date: Tue, 23 Jan 2018 10:01:51 -0500 Subject: [PATCH] Update zone tests to reflect correctly named jumpstart option --- tests/Endpoints/ZonesTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Endpoints/ZonesTest.php b/tests/Endpoints/ZonesTest.php index e0bb396..aceef12 100644 --- a/tests/Endpoints/ZonesTest.php +++ b/tests/Endpoints/ZonesTest.php @@ -20,7 +20,7 @@ class ZonesTest extends TestCase ->with( $this->equalTo('zones'), $this->equalTo([]), - $this->equalTo(['name' => 'example.com', 'jumpstart' => false]) + $this->equalTo(['name' => 'example.com', 'jump_start' => false]) ); $zones = new \Cloudflare\API\Endpoints\Zones($mock); @@ -41,7 +41,7 @@ class ZonesTest extends TestCase $this->equalTo([]), $this->equalTo([ 'name' => 'example.com', - 'jumpstart' => true, + 'jump_start' => true, 'organization' => (object)['id' => '01a7362d577a6c3019a474fd6f485823'] ]) );