From 6fe7f891644934b427ea56620fa8983befc25b10 Mon Sep 17 00:00:00 2001 From: Kevin F Date: Fri, 20 Oct 2023 17:40:37 +0200 Subject: [PATCH] Fix ci --- tests/FsSpreadsheet.ExcelIO.Tests/OpenXml/FsExtensions.fs | 2 +- tests/TestUtils/DefaultTestObjects.fs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/FsSpreadsheet.ExcelIO.Tests/OpenXml/FsExtensions.fs b/tests/FsSpreadsheet.ExcelIO.Tests/OpenXml/FsExtensions.fs index 0f754db4..82881b6a 100644 --- a/tests/FsSpreadsheet.ExcelIO.Tests/OpenXml/FsExtensions.fs +++ b/tests/FsSpreadsheet.ExcelIO.Tests/OpenXml/FsExtensions.fs @@ -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 _ -> diff --git a/tests/TestUtils/DefaultTestObjects.fs b/tests/TestUtils/DefaultTestObjects.fs index a607826a..cbc4eea8 100644 --- a/tests/TestUtils/DefaultTestObjects.fs +++ b/tests/TestUtils/DefaultTestObjects.fs @@ -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"