summaryrefslogtreecommitdiffstats
path: root/polygerrit-ui/app/elements/shared/gr-label-info/gr-label-info_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'polygerrit-ui/app/elements/shared/gr-label-info/gr-label-info_test.ts')
-rw-r--r--polygerrit-ui/app/elements/shared/gr-label-info/gr-label-info_test.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/polygerrit-ui/app/elements/shared/gr-label-info/gr-label-info_test.ts b/polygerrit-ui/app/elements/shared/gr-label-info/gr-label-info_test.ts
index cad1f6983a..0ac49a741f 100644
--- a/polygerrit-ui/app/elements/shared/gr-label-info/gr-label-info_test.ts
+++ b/polygerrit-ui/app/elements/shared/gr-label-info/gr-label-info_test.ts
@@ -28,12 +28,12 @@ import * as MockInteractions from '@polymer/iron-test-helpers/mock-interactions'
import {GrLabelInfo} from './gr-label-info';
import {GrButton} from '../gr-button/gr-button';
import {GrLabel} from '../gr-label/gr-label';
-import {GrAccountLink} from '../gr-account-link/gr-account-link';
import {
createAccountWithIdNameAndEmail,
createParsedChange,
} from '../../../test/test-data-generators';
import {LabelInfo} from '../../../types/common';
+import {GrAccountLabel} from '../gr-account-label/gr-account-label';
const basicFixture = fixtureFromElement('gr-label-info');
@@ -198,7 +198,7 @@ suite('gr-label-info tests', () => {
},
};
await element.updateComplete;
- const chips = queryAll<GrAccountLink>(element, 'gr-account-link');
+ const chips = queryAll<GrAccountLabel>(element, 'gr-account-label');
assert.equal(chips[0].account!._account_id, element.account._account_id);
});
});