Skip to content

Commit

Permalink
fix(core): Fix test (compared the wrong field)
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielBiegler committed Nov 3, 2024
1 parent 5dfc9a4 commit b246c54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/e2e/channel.e2e-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
});
Expand Down

0 comments on commit b246c54

Please sign in to comment.