Skip to content

Commit 5560fa9

Browse files
authored
fix: remove reference to ac_application and cc_application (resolves #2203) (#2205)
1 parent b716df0 commit 5560fa9

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

tests/Feature/Filament/SettingsTest.php

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
11
<?php
22

33
use App\Models\User;
4-
use App\Settings\GeneralSettings;
54

65
use function Pest\Laravel\actingAs;
76

87
test('only administrative users can access the settings page', function () {
9-
GeneralSettings::fake(
10-
['email' => '[email protected]', 'individual_orientation' => ['en' => 'english link'], 'org_orientation' => ['en' => 'english link'], 'fro_orientation' => ['en' => 'english link'], 'ac_application' => ['en' => 'english link'], 'cc_application' => ['en' => 'english link']]
11-
);
128
$user = User::factory()->create();
139
$administrator = User::factory()->create(['context' => 'administrator']);
1410

@@ -22,6 +18,7 @@
2218
'Contact',
2319
'Support email',
2420
'Support phone',
21+
'Privacy email',
2522
'Mailing address',
2623
'Social media',
2724
'Facebook page',

0 commit comments

Comments
 (0)