Skip to content

Commit af636bf

Browse files
committed
Update ProviderTest.php
1 parent 6b58876 commit af636bf

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/Unit/ProviderTest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
namespace BayAreaWebPro\SimpleCsv\Tests\Unit;
44

5-
use BayAreaWebPro\SimpleCsv\SimpleCsv;
65
use BayAreaWebPro\SimpleCsv\SimpleCsvService;
76
use BayAreaWebPro\SimpleCsv\SimpleCsvServiceProvider;
87
use BayAreaWebPro\SimpleCsv\Tests\TestCase;
@@ -27,7 +26,7 @@ public function test_facade_can_resolve_instance()
2726
public function test_service_can_be_resolved()
2827
{
2928
$csv = app('simple-csv');
30-
$this->assertTrue(($csv instanceof SimpleCsvService));
29+
$this->assertInstanceOf(SimpleCsvService::class, $csv);
3130
}
3231

3332
public function test_declares_provided()

0 commit comments

Comments
 (0)