Fix subfleets not returning proper fare counts #831 (#846)

Fix subfleets not returning proper fare counts #831
This commit is contained in:
Nabeel S
2020-09-29 13:21:24 -04:00
committed by GitHub
parent b6603bd178
commit 98aa362935
3 changed files with 43 additions and 13 deletions

View File

@@ -2,6 +2,8 @@
namespace Tests;
use App\Models\Subfleet;
trait TestData
{
/**
@@ -62,7 +64,7 @@ trait TestData
*/
public function createSubfleetWithAircraft($aircraft_count = null, $airport_id = null)
{
$subfleet = factory(\App\Models\Subfleet::class)->create([
$subfleet = factory(Subfleet::class)->create([
'ground_handling_multiplier' => '100',
]);