Skip to content

Commit

Permalink
[FIX] tests: bad separator in xlsx export
Browse files Browse the repository at this point in the history
";" isn't a valid separator.

Task: 4306250
Part-of: #5155
Signed-off-by: Pierre Rousseau (pro) <[email protected]>
  • Loading branch information
LucasLefevre committed Nov 7, 2024
1 parent ec41486 commit 70f58fa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
11 changes: 3 additions & 8 deletions tests/xlsx/__snapshots__/xlsx_export.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -25619,9 +25619,9 @@ exports[`Test XLSX export formulas All non-exportable formulas 1`] = `
</c>
</row>
<row r="9">
<c r="A9" t="s">
<c r="A9" t="b">
<v>
2
1
</v>
</c>
</row>
Expand Down Expand Up @@ -26090,7 +26090,7 @@ exports[`Test XLSX export formulas All non-exportable formulas 1`] = `
"path": "xl/styles.xml",
},
{
"content": "<sst xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" count="3" uniqueCount="3">
"content": "<sst xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" count="2" uniqueCount="2">
<si>
<t>
=WAIT(100)
Expand All @@ -26101,11 +26101,6 @@ exports[`Test XLSX export formulas All non-exportable formulas 1`] = `
=sum(A1,wait(100))
</t>
</si>
<si>
<t>
=LT(4;42)
</t>
</si>
</sst>",
"contentType": "sharedStrings",
"path": "xl/sharedStrings.xml",
Expand Down
2 changes: 1 addition & 1 deletion tests/xlsx/xlsx_export.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ const allNonExportableFormulasData = {
A6: { content: "=EQ(42,42)" },
A7: { content: "=GT(42,4)" },
A8: { content: "=GTE(4,4)" },
A9: { content: "=LT(4;42)" },
A9: { content: "=LT(4,42)" },
A10: { content: "=LTE(6,6)" },
A11: { content: "=MINUS(42,24)" },
A12: { content: "=MULTIPLY(42,2)" },
Expand Down

0 comments on commit 70f58fa

Please sign in to comment.