Skip to content

Commit

Permalink
styleCI fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mateusjatenee committed Aug 12, 2017
1 parent 3d9e734 commit 677426b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Illuminate/Support/Testing/Fakes/MailFake.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

use Illuminate\Contracts\Mail\Mailer;
use Illuminate\Contracts\Mail\Mailable;
use Illuminate\Contracts\Queue\ShouldQueue;
use PHPUnit\Framework\Assert as PHPUnit;
use Illuminate\Contracts\Queue\ShouldQueue;

class MailFake implements Mailer
{
Expand Down
4 changes: 2 additions & 2 deletions tests/Support/SupportTestingMailFakeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

use Illuminate\Mail\Mailable;
use PHPUnit\Framework\TestCase;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Support\Testing\Fakes\MailFake;
use PHPUnit\Framework\ExpectationFailedException;
use Illuminate\Contracts\Queue\ShouldQueue;

class MailFakeTest extends TestCase
{
Expand Down Expand Up @@ -89,7 +89,7 @@ public function testAssertQueuedTimes()
$this->fake->assertQueued(MailableStub::class, 2);
}

public function testSendQueuesAMailable()
public function testSendQueuesAMailableThatShouldBeQueued()
{
$this->fake->to('[email protected]')->send(new QueueableMailableStub);

Expand Down

0 comments on commit 677426b

Please sign in to comment.