Fix tests - No longer uses dummy variable

This commit is contained in:
Dolan
2019-01-11 00:26:16 +00:00
parent 612c024b1f
commit d674523139

View File

@ -7,7 +7,7 @@ describe("ImportDotx", () => {
it("should create", () => { it("should create", () => {
const file = new ImportDotx(); const file = new ImportDotx();
expect(file).to.deep.equal({ currentRelationshipId: 1 }); expect(file).to.deep.equal({});
}); });
}); });