Skip to content

Commit

Permalink
Fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Freymaurer committed Oct 20, 2023
1 parent 17a9cf8 commit 6fe7f89
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/FsSpreadsheet.ExcelIO.Tests/OpenXml/FsExtensions.fs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ let fsExtensionTests =
let doc = Spreadsheet.initEmptyOnStream stream
let testCell = FsCell.ofXlsxCell doc dummyXlsxCell
testCase "is equal in value" <| fun _ ->
Expect.equal testCell.Value dummyXlsxCell.CellValue.Text "values are not equal"
Expect.equal (testCell.ValueAsString()) dummyXlsxCell.CellValue.Text "values are not equal"
testCase "is equal in address/reference" <| fun _ ->
Expect.equal testCell.Address.Address dummyXlsxCell.CellReference.Value "addresses/references are not equal"
testCase "is equal in DataType/CellValues" <| fun _ ->
Expand Down
2 changes: 1 addition & 1 deletion tests/TestUtils/DefaultTestObjects.fs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ type TestFiles =
match this with
| Excel -> "TestWorkbook_Excel.xlsx"
| Libre -> "TestWorkbook_Libre.xlsx"
| FableExceljs -> "TestWorkbook_FableExcelJS.xlsx"
| FableExceljs -> "TestWorkbook_FableExceljs.xlsx"
| ClosedXML -> "TestWorkbook_ClosedXML.xlsx"
| FsSpreadsheetNET -> "TestWorkbook_FsSpreadsheet.net.xlsx"
| FsSpreadsheetJS -> "TestWorkbook_FsSpreadsheet.js.xlsx"
Expand Down

0 comments on commit 6fe7f89

Please sign in to comment.