diff --git a/src/telegram/bot.test.ts b/src/telegram/bot.test.ts index b74a25a76..6dd39c4e5 100644 --- a/src/telegram/bot.test.ts +++ b/src/telegram/bot.test.ts @@ -565,11 +565,10 @@ describe("createTelegramBot", () => { }); expect(sendAnimationSpy).toHaveBeenCalledTimes(1); - expect(sendAnimationSpy).toHaveBeenCalledWith( - "1234", - expect.anything(), - { caption: "caption", reply_to_message_id: undefined }, - ); + expect(sendAnimationSpy).toHaveBeenCalledWith("1234", expect.anything(), { + caption: "caption", + reply_to_message_id: undefined, + }); expect(sendPhotoSpy).not.toHaveBeenCalled(); }); });