Skip to content
This repository has been archived by the owner on Oct 31, 2023. It is now read-only.

Commit

Permalink
Fixed double assignment in FirstFridayTest::setUp() method
Browse files Browse the repository at this point in the history
  • Loading branch information
PHLAK committed Aug 25, 2017
1 parent 7d80633 commit 0708037
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/FirstFridayTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class FirstFridayTest extends PHPUnit_Framework_TestCase
{
public function setUp()
{
$this->firstFriday = $firstFriday = new FirstFriday('America/Phoenix');
$this->firstFriday = new FirstFriday('America/Phoenix');
}

public function test_it_returns_an_instance_of_carbon()
Expand Down

0 comments on commit 0708037

Please sign in to comment.