From 3a9fa49fbb57068c0ce451440b80537a42e2a276 Mon Sep 17 00:00:00 2001 From: Dolan Date: Tue, 26 Feb 2019 21:46:19 +0000 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 6dbdaf023b..f5f815d65a 100644 --- a/src/file/table/table.spec.ts +++ b/src/file/table/table.spec.ts @@ -184,7 +184,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": 10000000 } }] }], + "w:tblPr": [DEFAULT_TABLE_PROPERTIES, { "w:tblW": [{ _attr: { "w:type": "pct", "w:w": 1000 } }] }], }); }); });