From 3927e640b7dfc3e08e3e686bb7115937cf19079f Mon Sep 17 00:00:00 2001 From: hkutluay Date: Sat, 8 Oct 2022 20:36:26 +0300 Subject: [PATCH] add issuetime tests --- UblTr.Tests/InvoiceTypeTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UblTr.Tests/InvoiceTypeTest.cs b/UblTr.Tests/InvoiceTypeTest.cs index a2e75dd..0a181f1 100644 --- a/UblTr.Tests/InvoiceTypeTest.cs +++ b/UblTr.Tests/InvoiceTypeTest.cs @@ -134,7 +134,7 @@ public void InvoiceType_BasicInvoice_TimeSerialize() doc.Load(stream); var sn = doc.SelectSingleNode(xPath, namespaces); - Assert.AreEqual(sn.InnerText, date.ToString("HH:mm:ss")); + Assert.AreEqual(date.ToString("HH:mm:ss"), sn.InnerText); }