Typo fixed (Gropup -> Group)
This commit is contained in:
parent
cfa4e11506
commit
40fa5e63dc
3 changed files with 6 additions and 6 deletions
|
@ -202,7 +202,7 @@ describe('Actions', () => {
|
|||
it('creates DELETE_CONSUMER_GROUP__FAILURE', () => {
|
||||
const alert: FailurePayload = {
|
||||
subject: ['consumer-group', 'test'].join('-'),
|
||||
title: `Consumer Gropup Test`,
|
||||
title: `Consumer Group Test`,
|
||||
};
|
||||
expect(actions.deleteConsumerGroupAction.failure({ alert })).toEqual({
|
||||
type: 'DELETE_CONSUMER_GROUP__FAILURE',
|
||||
|
|
|
@ -38,7 +38,7 @@ describe('Consumer Groups Thunks', () => {
|
|||
await store.dispatch(thunks.deleteConsumerGroup(clusterName, id));
|
||||
const alert: FailurePayload = {
|
||||
subject: ['consumer-group', id].join('-'),
|
||||
title: `Consumer Gropup ${id}`,
|
||||
title: `Consumer Group ${id}`,
|
||||
response: {
|
||||
body: undefined,
|
||||
status: 500,
|
||||
|
@ -99,7 +99,7 @@ describe('Consumer Groups Thunks', () => {
|
|||
);
|
||||
const alert: FailurePayload = {
|
||||
subject: ['consumer-group', id].join('-'),
|
||||
title: `Consumer Gropup ${id}`,
|
||||
title: `Consumer Group ${id}`,
|
||||
response: {
|
||||
body: undefined,
|
||||
status: 500,
|
||||
|
|
|
@ -59,7 +59,7 @@ export const fetchConsumerGroupDetails =
|
|||
const response = await getResponse(e);
|
||||
const alert: FailurePayload = {
|
||||
subject: ['consumer-group', consumerGroupID].join('-'),
|
||||
title: `Consumer Gropup ${consumerGroupID}`,
|
||||
title: `Consumer Group ${consumerGroupID}`,
|
||||
response,
|
||||
};
|
||||
dispatch(actions.fetchConsumerGroupDetailsAction.failure({ alert }));
|
||||
|
@ -83,7 +83,7 @@ export const deleteConsumerGroup =
|
|||
const response = await getResponse(e);
|
||||
const alert: FailurePayload = {
|
||||
subject: ['consumer-group', consumerGroupID].join('-'),
|
||||
title: `Consumer Gropup ${consumerGroupID}`,
|
||||
title: `Consumer Group ${consumerGroupID}`,
|
||||
response,
|
||||
};
|
||||
dispatch(actions.deleteConsumerGroupAction.failure({ alert }));
|
||||
|
@ -124,7 +124,7 @@ export const resetConsumerGroupOffsets =
|
|||
const response = await getResponse(e);
|
||||
const alert: FailurePayload = {
|
||||
subject: ['consumer-group', consumerGroupID].join('-'),
|
||||
title: `Consumer Gropup ${consumerGroupID}`,
|
||||
title: `Consumer Group ${consumerGroupID}`,
|
||||
response,
|
||||
};
|
||||
dispatch(actions.resetConsumerGroupOffsetsAction.failure({ alert }));
|
||||
|
|
Loading…
Add table
Reference in a new issue