@@ -101,7 +101,7 @@ public function test_super_admin_user_can_create_user(): void
101
101
public function test_super_admin_user_can_show_user (): void
102
102
{
103
103
for ($ i = 1 ; $ i <= 5 ; $ i ++) {
104
- $ response = $ this ->get ('/admin/users/ ' . $ i );
104
+ $ response = $ this ->get ('/admin/users/ ' . $ i );
105
105
106
106
$ response ->assertStatus (200 );
107
107
}
@@ -110,7 +110,7 @@ public function test_super_admin_user_can_show_user(): void
110
110
public function test_super_admin_user_can_edit_user (): void
111
111
{
112
112
for ($ i = 1 ; $ i <= 5 ; $ i ++) {
113
- $ response = $ this ->get ('/admin/users/ ' . $ i . '/edit ' );
113
+ $ response = $ this ->get ('/admin/users/ ' . $ i . '/edit ' );
114
114
115
115
$ response ->assertStatus (200 );
116
116
}
@@ -149,7 +149,7 @@ public function test_super_admin_user_can_restore_trashed_user(): void
149
149
{
150
150
$ model_id = 5 ;
151
151
152
- $ response = $ this ->delete ('/admin/users/ ' . $ model_id );
152
+ $ response = $ this ->delete ('/admin/users/ ' . $ model_id );
153
153
154
154
$ response ->assertStatus (302 );
155
155
@@ -178,7 +178,7 @@ public function test_super_admin_user_can_restore_user(): void
178
178
public function test_super_admin_user_can_view_change_password_user (): void
179
179
{
180
180
for ($ i = 1 ; $ i <= 5 ; $ i ++) {
181
- $ response = $ this ->get ('/admin/users/ ' . $ i . '/change-password ' );
181
+ $ response = $ this ->get ('/admin/users/ ' . $ i . '/change-password ' );
182
182
183
183
$ response ->assertStatus (200 );
184
184
}
@@ -227,7 +227,7 @@ public function test_super_admin_user_can_create_role(): void
227
227
public function test_super_admin_user_can_show_role (): void
228
228
{
229
229
for ($ i = 1 ; $ i <= 5 ; $ i ++) {
230
- $ response = $ this ->get ('/admin/roles/ ' . $ i );
230
+ $ response = $ this ->get ('/admin/roles/ ' . $ i );
231
231
232
232
$ response ->assertStatus (200 );
233
233
}
@@ -236,7 +236,7 @@ public function test_super_admin_user_can_show_role(): void
236
236
public function test_super_admin_user_can_edit_role (): void
237
237
{
238
238
for ($ i = 1 ; $ i <= 5 ; $ i ++) {
239
- $ response = $ this ->get ('/admin/roles/ ' . $ i . '/edit ' );
239
+ $ response = $ this ->get ('/admin/roles/ ' . $ i . '/edit ' );
240
240
241
241
$ response ->assertStatus (200 );
242
242
}
@@ -356,7 +356,7 @@ public function test_super_admin_user_can_restore_trashed_post(): void
356
356
357
357
$ model_id = 5 ;
358
358
359
- $ response = $ this ->delete ('/admin/posts/ ' . $ model_id );
359
+ $ response = $ this ->delete ('/admin/posts/ ' . $ model_id );
360
360
361
361
$ response ->assertStatus (302 );
362
362
@@ -464,7 +464,7 @@ public function test_super_admin_user_can_restore_trashed_category(): void
464
464
465
465
$ model_id = 5 ;
466
466
467
- $ response = $ this ->delete ('/admin/categories/ ' . $ model_id );
467
+ $ response = $ this ->delete ('/admin/categories/ ' . $ model_id );
468
468
469
469
$ response ->assertStatus (302 );
470
470
@@ -572,7 +572,7 @@ public function test_super_admin_user_can_restore_trashed_tag(): void
572
572
573
573
$ model_id = 5 ;
574
574
575
- $ response = $ this ->delete ('/admin/tags/ ' . $ model_id );
575
+ $ response = $ this ->delete ('/admin/tags/ ' . $ model_id );
576
576
577
577
$ response ->assertStatus (302 );
578
578
0 commit comments