From b246c54f372d02009d6fcdbff72ccf9909bafc46 Mon Sep 17 00:00:00 2001 From: Daniel Biegler Date: Sun, 3 Nov 2024 21:25:24 +0100 Subject: [PATCH] fix(core): Fix test (compared the wrong field) --- packages/core/e2e/channel.e2e-spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/e2e/channel.e2e-spec.ts b/packages/core/e2e/channel.e2e-spec.ts index 92582bc374..6c4c1d2d04 100644 --- a/packages/core/e2e/channel.e2e-spec.ts +++ b/packages/core/e2e/channel.e2e-spec.ts @@ -384,7 +384,7 @@ describe('Channels', () => { Codegen.DeleteChannelMutationVariables >(DELETE_CHANNEL, { id: defaultChannelId! }); - expect(mutation.deleteChannel.result).toEqual({ + expect(mutation.deleteChannel).toEqual({ result: DeletionResult.NOT_DELETED, message: 'The default Channel cannot be deleted', });