Rename the PirepService class

This commit is contained in:
Nabeel Shahzad
2018-03-06 17:36:06 -06:00
parent a325470b8f
commit dc2570a408
7 changed files with 22 additions and 18 deletions

View File

@@ -2,7 +2,7 @@
use App\Models\Enums\ExpenseType;
use App\Repositories\ExpenseRepository;
use App\Services\PIREPService;
use App\Services\PirepService;
use App\Repositories\JournalRepository;
use App\Services\FareService;
use App\Services\Finance\PirepFinanceService;
@@ -30,7 +30,7 @@ class FinanceTest extends TestCase
$this->fareSvc = app(FareService::class);
$this->financeSvc = app(PirepFinanceService::class);
$this->fleetSvc = app(FleetService::class);
$this->pirepSvc = app(PIREPService::class);
$this->pirepSvc = app(PirepService::class);
}
/**

View File

@@ -17,7 +17,7 @@ class PIREPTest extends TestCase
parent::setUp(); // TODO: Change the autogenerated stub
$this->addData('base');
$this->pirepSvc = app('App\Services\PIREPService');
$this->pirepSvc = app('App\Services\PirepService');
$this->settingsRepo = app(SettingRepository::class);
}