From: Ernesto Puerta Date: Wed, 2 Dec 2020 20:49:26 +0000 (+0100) Subject: mgr/dashboard: fix wrong import in iscsi unit test X-Git-Tag: v16.1.0~395^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F38409%2Fhead;p=ceph.git mgr/dashboard: fix wrong import in iscsi unit test This commit bdf866e436b8772a4080ade7298192eee9adcc97 happened after the last run of https://github.com/ceph/ceph/pull/37198 make check. That's why that latter PR passed the tests then but failed when merged in master. Fixes: https://tracker.ceph.com/issues/48441 Signed-off-by: Ernesto Puerta --- diff --git a/src/pybind/mgr/dashboard/frontend/src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.spec.ts b/src/pybind/mgr/dashboard/frontend/src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.spec.ts index 494559e15ca2..10475872a2e5 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.spec.ts +++ b/src/pybind/mgr/dashboard/frontend/src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.spec.ts @@ -4,10 +4,10 @@ import { ReactiveFormsModule } from '@angular/forms'; import { ActivatedRoute } from '@angular/router'; import { RouterTestingModule } from '@angular/router/testing'; -import { SelectOption } from 'app/shared/components/select/select-option.model'; import { ToastrModule } from 'ngx-toastr'; import { LoadingPanelComponent } from '~/app/shared/components/loading-panel/loading-panel.component'; +import { SelectOption } from '~/app/shared/components/select/select-option.model'; import { CdFormGroup } from '~/app/shared/forms/cd-form-group'; import { SharedModule } from '~/app/shared/shared.module'; import { ActivatedRouteStub } from '~/testing/activated-route-stub';