From 0a488fcf2c1588676d3ce8b2ae59fdafed98eebf Mon Sep 17 00:00:00 2001 From: Corey Farrell Date: Thu, 14 May 2020 07:46:54 -0400 Subject: [PATCH] Reference correct property name in integration testing testConstants does not have a `content` property, it has a `contents` property. Reference the correct name to make tests pass. --- test/integration.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration.js b/test/integration.js index 1ecc19c6..9022bb92 100644 --- a/test/integration.js +++ b/test/integration.js @@ -30,7 +30,7 @@ var inputGlob = path.join(inputBase, './*.txt'); var outputBase = path.join(base, './out/'); var outputSymlink = path.join(symlinkDirpath, './foo'); var outputDirpathSymlink = path.join(outputDirpath, './foo'); -var content = testConstants.content; +var content = testConstants.contents; var clean = cleanup(base);