From cd56c7e2578f2dbabf68fd7985062d673fa912a2 Mon Sep 17 00:00:00 2001 From: InsanusMokrassar Date: Thu, 28 May 2026 18:38:35 +0600 Subject: [PATCH] rename functions names in NewRequestExceptionTests --- .../tgbotapi/bot/exceptions/NewRequestExceptionTests.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tgbotapi.core/src/commonTest/kotlin/dev/inmo/tgbotapi/bot/exceptions/NewRequestExceptionTests.kt b/tgbotapi.core/src/commonTest/kotlin/dev/inmo/tgbotapi/bot/exceptions/NewRequestExceptionTests.kt index bae9e8d0bd..044d10b963 100644 --- a/tgbotapi.core/src/commonTest/kotlin/dev/inmo/tgbotapi/bot/exceptions/NewRequestExceptionTests.kt +++ b/tgbotapi.core/src/commonTest/kotlin/dev/inmo/tgbotapi/bot/exceptions/NewRequestExceptionTests.kt @@ -17,21 +17,21 @@ class NewRequestExceptionTests { ) @Test - fun `TooMuchRequestsException is created for canonical casing`() { + fun tooMuchRequestsExceptionIsCreatedForCanonicalCasing() { assertIs( buildException("Bad Request: Too Many Requests: retry after 8") ) } @Test - fun `TooMuchRequestsException is created for lowercase first-letter casing`() { + fun tooMuchRequestsExceptionIsCreatedForLowercaseFirstLetterCasing() { assertIs( buildException("Bad Request: too Many Requests: retry after 8") ) } @Test - fun `TooMuchRequestsException is created for all-lowercase casing`() { + fun tooMuchRequestsExceptionIsCreatedForAllLowercaseCasing() { assertIs( buildException("Bad Request: too many requests: retry after 8") )