From 42b6ccb57e54e25e758c22faa3c15fe893545aa0 Mon Sep 17 00:00:00 2001
From: Klaus Fischer <klaus.fischer@eloware.com>
Date: Wed, 7 Sep 2022 13:29:35 +0200
Subject: [PATCH] BUGFIX: Unit test failed due to changed error message

---
 IntegrationTests/CallbackTest.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/IntegrationTests/CallbackTest.cs b/IntegrationTests/CallbackTest.cs
index 827eaebb..3a932de1 100644
--- a/IntegrationTests/CallbackTest.cs
+++ b/IntegrationTests/CallbackTest.cs
@@ -95,6 +95,6 @@ public class CallbackTest {
         Assert.Throws<ArgumentException>(() => {
                 FitConnect.Subscriber.VerifyCallback(_callbackSecret, _request);
             })
-            .Message.Should().Be("Request is not authentic");
+            .Message.Should().Be("Verified request does not match authentication");
     }
 }
-- 
GitLab