Skip to content

Commit

Permalink
Fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
tinohager committed Sep 15, 2023
1 parent 5c0d702 commit baf133e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Portalum.Zvt.UnitTest/ZvtClientTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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<byte>();

mockDeviceCommunication.Raise(mock => mock.DataReceived += null, new byte[] { 0x06, 0x1E, 0x01, 0x05 });
Expand Down

0 comments on commit baf133e

Please sign in to comment.