From 9b5610aa45f774924900599aaa95f7e4b59c7f7f Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Tue, 6 Jan 2026 03:43:05 +0100 Subject: [PATCH] style: format telegram bot test --- src/telegram/bot.test.ts | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) 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(); }); });