From d67452313913b0cf34d49c902e4c05237c3685fb Mon Sep 17 00:00:00 2001 From: Dolan Date: Fri, 11 Jan 2019 00:26:16 +0000 Subject: [PATCH] Fix tests - No longer uses dummy variable --- src/import-dotx/import-dotx.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/import-dotx/import-dotx.spec.ts b/src/import-dotx/import-dotx.spec.ts index f89131abf5..c0101174cc 100644 --- a/src/import-dotx/import-dotx.spec.ts +++ b/src/import-dotx/import-dotx.spec.ts @@ -7,7 +7,7 @@ describe("ImportDotx", () => { it("should create", () => { const file = new ImportDotx(); - expect(file).to.deep.equal({ currentRelationshipId: 1 }); + expect(file).to.deep.equal({}); }); });