Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
mnurullahsaglam authored and github-actions[bot] committed Mar 12, 2023
1 parent e7d0af0 commit ebf3436
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions tests/Models/TestPostModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ class TestPostModel extends Model
use HasOwner;

protected $table = 'test_posts';

protected $guarded = [];

public $timestamps = false;
Expand Down
1 change: 1 addition & 0 deletions tests/Models/TestUserModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
class TestUserModel extends Authenticatable
{
protected $table = 'test_users';

protected $guarded = [];

public $timestamps = false;
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public function setUpDatabase()
private function createUser()
{
TestUserModel::create([
'email' => '[email protected]',
'email' => '[email protected]',
'password' => bcrypt('12345678'),
]);
}
Expand Down

0 comments on commit ebf3436

Please sign in to comment.