Skip to content

Commit

Permalink
removed test for removed days method on period
Browse files Browse the repository at this point in the history
  • Loading branch information
Felix committed Oct 6, 2017
1 parent 2159697 commit 9c264fc
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 12 deletions.
1 change: 0 additions & 1 deletion src/SearchConsoleClientFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@

class SearchConsoleClientFactory
{

/**
* @param array $searchConsoleConfig
* @return SearchConsoleClient
Expand Down
11 changes: 0 additions & 11 deletions tests/Unit/PeriodTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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()
{
Expand Down

0 comments on commit 9c264fc

Please sign in to comment.