File tree 2 files changed +7
-5
lines changed
tests/Feature/Middlewares
2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -16,9 +16,11 @@ protected function detect(Request $request): bool|float|int|string|null
16
16
return null ;
17
17
}
18
18
19
- return Locales::isInstalled (
20
- $ this ->strBefore ($ value , [', ' , '; ' ])
21
- );
19
+ if (! Locales::isInstalled ($ this ->strBefore ($ value , [', ' , '; ' ]))) {
20
+ return null ;
21
+ }
22
+
23
+ return $ value ;
22
24
}
23
25
24
26
protected function strBefore (string $ value , array $ search ): string
Original file line number Diff line number Diff line change 52
52
->assertSuccessful ()
53
53
->assertJsonPath ($ foo , LocaleValue::TranslationFrench);
54
54
55
- assertEventDispatched ();
55
+ assertEventNotDispatched ();
56
56
})->with ('uninstalled-locales ' );
57
57
58
58
test ('unknown locale ' , function (int |string $ locale ) {
64
64
->assertSuccessful ()
65
65
->assertJsonPath ($ foo , LocaleValue::TranslationFrench);
66
66
67
- assertEventDispatched ();
67
+ assertEventNotDispatched ();
68
68
})->with ('unknown-locales ' );
You can’t perform that action at this time.
0 commit comments