Skip to content

Commit

Permalink
[5.5] Fix misspellings setUp (laravel#22667)
Browse files Browse the repository at this point in the history
  • Loading branch information
carusogabriel authored and taylorotwell committed Jan 6, 2018
1 parent 9f4a0a8 commit fe2d27d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion tests/Auth/AuthDatabaseTokenRepositoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class AuthDatabaseTokenRepositoryTest extends TestCase
{
public function setup()
{
parent::setup();
parent::setUp();

Carbon::setTestNow(Carbon::now());
}
Expand Down
2 changes: 1 addition & 1 deletion tests/Cache/CacheFileStoreTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class CacheFileStoreTest extends TestCase
{
public function setup()
{
parent::setup();
parent::setUp();

Carbon::setTestNow(Carbon::now());
}
Expand Down
2 changes: 1 addition & 1 deletion tests/Database/DatabaseEloquentModelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class DatabaseEloquentModelTest extends TestCase

public function setup()
{
parent::setup();
parent::setUp();

Carbon::setTestNow(Carbon::now());
}
Expand Down
2 changes: 1 addition & 1 deletion tests/Redis/ConcurrentLimiterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class ConcurrentLimiterTest extends TestCase

public function setup()
{
parent::setup();
parent::setUp();

$this->setUpRedis();
}
Expand Down
2 changes: 1 addition & 1 deletion tests/Redis/DurationLimiterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class DurationLimiterTest extends TestCase

public function setup()
{
parent::setup();
parent::setUp();

$this->setUpRedis();
}
Expand Down

0 comments on commit fe2d27d

Please sign in to comment.