Skip to content

Commit 4d4d6db

Browse files
authored
Apply fixes from StyleCI (#292)
1 parent 7679bcd commit 4d4d6db

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/Feature/Authentication/AuthServiceRegisterTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ public function test_register_successfully()
9595
Event::assertDispatched(Registered::class, function ($e) use ($user) {
9696
$this->assertEquals($e->user->email, $user['email']);
9797

98-
return $e->user instanceof \ Binaryk\LaravelRestify\Tests\Fixtures\User\User;
98+
return $e->user instanceof \Binaryk\LaravelRestify\Tests\Fixtures\User\User;
9999
});
100100

101101
$lastUser = User::query()->get()->last();
@@ -161,7 +161,7 @@ public function test_verify_user_successfully()
161161
Event::assertDispatched(Verified::class, function ($e) use ($user) {
162162
$this->assertEquals($e->user->email, $user['email']);
163163

164-
return $e->user instanceof \ Binaryk\LaravelRestify\Tests\Fixtures\User\User;
164+
return $e->user instanceof \Binaryk\LaravelRestify\Tests\Fixtures\User\User;
165165
});
166166
}
167167
}

tests/Fields/BelongsToManyFieldTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public function test_ignored_when_storing()
5757
'relationships' => [
5858
'users' => [],
5959
],
60-
],
60+
],
6161
]);
6262
}
6363
}

0 commit comments

Comments
 (0)