Skip to content

Commit

Permalink
Update SheetDataWriterTests.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyqus authored Nov 8, 2024
1 parent 59cf4e7 commit 3a1724e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testcases/ooxml/XSSF/Streaming/SheetDataWriterTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public void IfWritingRowWithCustomHeightShouldIncludeCustomHeightXml()
var lines = File.ReadAllLines(_objectToTest.TemporaryFilePath());

Assert.True(lines.Length == 2);
Assert.AreEqual($"<row r=\"{1}\" customHeight=\"true\" ht=\"{row.HeightInPoints}\">", lines[0]);
Assert.AreEqual($"<row r=\"{1}\" customHeight=\"1\" ht=\"{row.HeightInPoints}\">", lines[0]);
Assert.AreEqual("</row>", lines[1]);
}

Expand Down

0 comments on commit 3a1724e

Please sign in to comment.