Skip to content

Commit 0238b27

Browse files
Update arch test descriptions to remove unnecessary punctuations
1 parent ef273cd commit 0238b27

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/Feature/ArchTest.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
<?php
22

3-
arch('All files in the casts directory extend `CastsAttributes`.')
3+
arch('All files in the casts directory extend `CastsAttributes`')
44
->expect('App\Casts')
55
->toExtend('Illuminate\Contracts\Database\Eloquent\CastsAttributes');
66

7-
arch('All files in the casts directory have suffix `Cast`.')
7+
arch('All files in the casts directory have suffix `Cast`')
88
->expect('App\Casts')
99
->toHaveSuffix('Cast');
1010

11-
arch('All files in the observers directory have suffix `Observer`.')
11+
arch('All files in the observers directory have suffix `Observer`')
1212
->expect('App\Observers')
1313
->toHaveSuffix('Observer');
1414

15-
arch('All files in the policies directory have suffix `Policy`.')
15+
arch('All files in the policies directory have suffix `Policy`')
1616
->expect('App\Policies')
1717
->toHaveSuffix('Policy');
1818

19-
arch('All files in the services directory have suffix `Service`.')
19+
arch('All files in the services directory have suffix `Service`')
2020
->expect('App\Services')
2121
->toHaveSuffix('Service');
2222

0 commit comments

Comments
 (0)