Skip to content

Commit

Permalink
fix: add missing trashed
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyTWF authored Aug 18, 2023
1 parent 206131c commit 1a001d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Api/PluginTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public function testItReturnsPluginApiDataWithDeleted()
FlightInformationRegion::all()
)->toArray(new Request()),
'flow_measures' => FlowMeasureResource::collection(
FlowMeasure::whereIn('id', [$active->id, $notStarted->id, $finished->id, $deleted->id])->get()
FlowMeasure::whereIn('id', [$active->id, $notStarted->id, $finished->id, $deleted->id])->withTrashed()->get()
)->toArray(new Request()),
]
);
Expand Down

0 comments on commit 1a001d8

Please sign in to comment.