This is an automated email from the ASF dual-hosted git repository.
pcongiusti pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new 6245b9fccc54 fix(components): check same type
6245b9fccc54 is described below
commit 6245b9fccc54d956111bd48d5be420cfc77a4c5b
Author: Pasquale Congiusti <[email protected]>
AuthorDate: Mon Jan 26 16:53:24 2026 +0100
fix(components): check same type
---
.../camel/component/telegram/TelegramProducerStarPaymentTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/components/camel-telegram/src/test/java/org/apache/camel/component/telegram/TelegramProducerStarPaymentTest.java
b/components/camel-telegram/src/test/java/org/apache/camel/component/telegram/TelegramProducerStarPaymentTest.java
index 072e76306968..e1f7a18b2e2e 100644
---
a/components/camel-telegram/src/test/java/org/apache/camel/component/telegram/TelegramProducerStarPaymentTest.java
+++
b/components/camel-telegram/src/test/java/org/apache/camel/component/telegram/TelegramProducerStarPaymentTest.java
@@ -76,7 +76,7 @@ public class TelegramProducerStarPaymentTest extends
TelegramTestSupport {
assertThat(firstTxn.getId()).isEqualTo("txn_001");
assertThat(firstTxn.getAmount()).isEqualTo(100);
assertThat(firstTxn.getNanostarAmount()).isEqualTo(0);
- assertThat(firstTxn.getDate()).isEqualTo(1704067200L);
+ assertThat(firstTxn.getDate()).isEqualTo(1704067200);
assertThat(firstTxn.getSource()).isNotNull();
StarTransaction secondTxn = starTransactions.getTransactions().get(1);