From a3bfcf01b7ab180b3b83efa0c1a24581c5361bc6 Mon Sep 17 00:00:00 2001 From: Nabeel Shahzad Date: Fri, 30 Mar 2018 21:25:54 -0500 Subject: [PATCH] Fix mock storage for airports --- tests/ImporterTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/ImporterTest.php b/tests/ImporterTest.php index 61a3baa2..97f9dccb 100644 --- a/tests/ImporterTest.php +++ b/tests/ImporterTest.php @@ -264,8 +264,8 @@ class ImporterTest extends TestCase $importer = app(\App\Services\ImportService::class); $exporter = app(\App\Services\ExportService::class); - $file = $exporter->exportAirport(collect([$airport])); - $status = $importer->importAirport($file); + $file = $exporter->exportAirports(collect([$airport])); + $status = $importer->importAirports($file); $this->assertCount(1, $status['success']); $this->assertCount(0, $status['errors']); }