Skip to content

Commit c49a73f

Browse files
authored
Fix namespace of test classes (mongodb#3361)
Spotted with composer dump-autoload --strict-psr --optimize
1 parent b53bb86 commit c49a73f

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

tests/Casts/EncryptionTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Casts;
5+
namespace MongoDB\Laravel\Tests\Casts;
66

77
use Illuminate\Database\Eloquent\Casts\Json;
88
use Illuminate\Encryption\Encrypter;

tests/DateTimeImmutableTest.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,11 @@
22

33
declare(strict_types=1);
44

5-
namespace MongoDB\Laravel\Tests\Eloquent;
5+
namespace MongoDB\Laravel\Tests;
66

77
use Carbon\CarbonImmutable;
88
use Illuminate\Support\Facades\Date;
99
use MongoDB\Laravel\Tests\Models\Anniversary;
10-
use MongoDB\Laravel\Tests\TestCase;
1110

1211
use function assert;
1312

tests/PropertyTest.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22

33
declare(strict_types=1);
44

5-
namespace MongoDB\Laravel\Tests\Eloquent;
5+
namespace MongoDB\Laravel\Tests;
66

77
use MongoDB\Laravel\Tests\Models\HiddenAnimal;
8-
use MongoDB\Laravel\Tests\TestCase;
98

109
use function assert;
1110

0 commit comments

Comments
 (0)