From 9c264fcbcb01ffd370aeade2c62a772814d07c79 Mon Sep 17 00:00:00 2001 From: Felix Date: Fri, 6 Oct 2017 13:32:31 +0200 Subject: [PATCH] removed test for removed days method on period --- src/SearchConsoleClientFactory.php | 1 - tests/Unit/PeriodTest.php | 11 ----------- 2 files changed, 12 deletions(-) diff --git a/src/SearchConsoleClientFactory.php b/src/SearchConsoleClientFactory.php index 68874b7..c926911 100644 --- a/src/SearchConsoleClientFactory.php +++ b/src/SearchConsoleClientFactory.php @@ -9,7 +9,6 @@ class SearchConsoleClientFactory { - /** * @param array $searchConsoleConfig * @return SearchConsoleClient diff --git a/tests/Unit/PeriodTest.php b/tests/Unit/PeriodTest.php index 497ead3..28bad45 100644 --- a/tests/Unit/PeriodTest.php +++ b/tests/Unit/PeriodTest.php @@ -9,17 +9,6 @@ class PeriodTest extends TestCase { - /** @test */ - public function it_can_create_a_period_for_a_given_amount_of_days() - { - Carbon::setTestNow(Carbon::create(2017, 7, 1)); - - $period = Period::days(7); - - $this->assertSame('2017-06-22', $period->startDate->format('Y-m-d')); - $this->assertSame('2017-06-28', $period->endDate->format('Y-m-d')); - } - /** @test */ public function it_provides_a_create_method() {