diff --git a/src/Portalum.Zvt.UnitTest/ZvtClientTest.cs b/src/Portalum.Zvt.UnitTest/ZvtClientTest.cs index 1c1df79..fd98f18 100644 --- a/src/Portalum.Zvt.UnitTest/ZvtClientTest.cs +++ b/src/Portalum.Zvt.UnitTest/ZvtClientTest.cs @@ -561,7 +561,7 @@ public async Task PaymentAsync_IssueOfGoods_RejectedCard_Successful() Assert.IsFalse(startAsyncCompletionCalled); // ensure we answer with an ack in this case - CollectionAssert.AreEqual(new byte[] { 0x84, 0x66, 0x00 }, dataSent, $"Collection is wrong {BitConverter.ToString(dataSent)}"); + CollectionAssert.AreEqual(new byte[] { 0x80, 0x00, 0x00 }, dataSent, $"Collection is wrong {BitConverter.ToString(dataSent)}"); dataSent = Array.Empty(); mockDeviceCommunication.Raise(mock => mock.DataReceived += null, new byte[] { 0x06, 0x1E, 0x01, 0x05 });