We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a793ab5 commit b5e0b46Copy full SHA for b5e0b46
tests/FeaturesTest.php
@@ -128,10 +128,10 @@
128
expect(cache()->store('array')->get('testing.some-feature'))->toBe(FeatureState::on()->value);
129
});
130
131
-it('uses the default cache store when cache store has not been set', function() {
+it('uses the default cache store when cache store has not been set', function () {
132
config(['cache.default' => 'file']);
133
134
config(['feature-flags.cache_store' => env('FEATURES_CACHE_STORE', config('cache.default'))]);
135
136
expect(config('feature-flags.cache_store'))->toBe('file');
137
-});
+});
0 commit comments