From f76471f553200b15862ebd3067701d88afa62385 Mon Sep 17 00:00:00 2001 From: fmuscolino Date: Wed, 6 Mar 2019 13:33:50 +0100 Subject: [PATCH] Fix test --- src/file/table/table.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/file/table/table.spec.ts b/src/file/table/table.spec.ts index ae470abc4c..f582e516ec 100644 --- a/src/file/table/table.spec.ts +++ b/src/file/table/table.spec.ts @@ -200,7 +200,7 @@ describe("Table", () => { .which.is.an("array") .with.has.length.at.least(1); expect(tree["w:tbl"][0]).to.deep.equal({ - "w:tblPr": [DEFAULT_TABLE_PROPERTIES, { "w:tblW": [{ _attr: { "w:type": "pct", "w:w": 1000 } }] }], + "w:tblPr": [DEFAULT_TABLE_PROPERTIES, { "w:tblW": [{ _attr: { "w:type": "pct", "w:w": "1000%" } }] }], }); });