diff --git a/tests/Feature/Importing/Api/ImportDataTestCase.php b/tests/Feature/Importing/Api/ImportDataTestCase.php index ac39fab677..546b6c0f37 100644 --- a/tests/Feature/Importing/Api/ImportDataTestCase.php +++ b/tests/Feature/Importing/Api/ImportDataTestCase.php @@ -11,26 +11,4 @@ abstract class ImportDataTestCase extends TestCase { return $this->postJson(route('api.imports.importFile', $parameters), $parameters); } - - /** - * @todo Add more permissions. - */ - public static function permissionsTestData(): array - { - return [ - '`admin`' => ['admin'], - '`reports.view`' => ['reports.view'], - 'only `assets` permission' => [ - 'assets.view', - 'assets.create', - 'assets.edit', - 'assets.delete', - 'assets.checkout', - 'assets.checkin', - 'assets.audit', - 'assets.view.requestable', - 'assets.view.encrypted_custom_fields' - ] - ]; - } }