Return the flight fares if there are no subfleet fares #488 (#489)

* Return the flight fares if there are no subfleet fares #488

* Formatting

* Formatting
This commit is contained in:
Nabeel S
2020-01-06 13:44:43 -05:00
committed by GitHub
parent 282cb4be95
commit 74052e4542
10 changed files with 35 additions and 28 deletions

View File

@@ -177,7 +177,7 @@ class FinanceTest extends TestCase
'capacity' => $percent_200,
]);
$ac_fares = $this->fareSvc->getForFlight($flight);
$ac_fares = $this->fareSvc->getAllFares($flight, null);
$this->assertCount(1, $ac_fares);
$this->assertEquals($new_price, $ac_fares[0]->price);

View File

@@ -37,7 +37,7 @@ class TestCase extends Illuminate\Foundation\Testing\TestCase
/**
* @throws Exception
*/
public function setUp() : void
public function setUp(): void
{
parent::setUp();
@@ -52,7 +52,7 @@ class TestCase extends Illuminate\Foundation\Testing\TestCase
Artisan::call('migrate:refresh', ['--env' => 'testing']);
}
public function tearDown() : void
public function tearDown(): void
{
parent::tearDown();
}