Skip to content

Commit 3fd8515

Browse files
committed
wip it
1 parent 2fcf63e commit 3fd8515

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/SyncFeaturesActionTest.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
],
2828
]);
2929

30-
(new SyncFeaturesAction)->__invoke();
30+
(new SyncFeaturesAction())->__invoke();
3131

3232
$this->assertDatabaseCount('features', 3);
3333

@@ -65,7 +65,7 @@
6565
],
6666
]);
6767

68-
(new SyncFeaturesAction)->__invoke();
68+
(new SyncFeaturesAction())->__invoke();
6969

7070
$this->assertDatabaseCount('features', 2);
7171

@@ -97,7 +97,7 @@
9797
],
9898
]);
9999

100-
(new SyncFeaturesAction)->__invoke();
100+
(new SyncFeaturesAction())->__invoke();
101101

102102
$this->assertDatabaseCount('features', 1);
103103

@@ -123,7 +123,7 @@
123123
'feature-flags.always_on' => ['staging'],
124124
]);
125125

126-
(new SyncFeaturesAction)->__invoke();
126+
(new SyncFeaturesAction())->__invoke();
127127

128128
$this->assertDatabaseCount('features', 3);
129129

@@ -155,7 +155,7 @@
155155
'feature-flags.always_on' => ['local', 'staging'],
156156
]);
157157

158-
(new SyncFeaturesAction)->__invoke();
158+
(new SyncFeaturesAction())->__invoke();
159159

160160
$this->assertDatabaseCount('features', 3);
161161

0 commit comments

Comments
 (0)