From d887068904422b833bb319ca6ab9ebf63a4627b7 Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Thu, 17 Mar 2022 04:15:23 +0900 Subject: [PATCH] Alerting: Fix typo in matchers.test.ts (#46641) occurence -> occurrence --- public/app/features/alerting/unified/utils/matchers.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/features/alerting/unified/utils/matchers.test.ts b/public/app/features/alerting/unified/utils/matchers.test.ts index 68b47701bac..33ddec0bb14 100644 --- a/public/app/features/alerting/unified/utils/matchers.test.ts +++ b/public/app/features/alerting/unified/utils/matchers.test.ts @@ -27,7 +27,7 @@ describe('Unified Alerting matchers', () => { expect(matchers[1].value).toBe('YNZBpGJnk'); }); - it('Should create one matcher, using the first occurence when duplicated labels exists', () => { + it('Should create one matcher, using the first occurrence when duplicated labels exists', () => { const matchers = parseQueryParamMatchers(['alertname=TestData 1', 'alertname=TestData 2']); expect(matchers).toHaveLength(1);