Skip to content

Commit

Permalink
Reference correct property name in integration testing
Browse files Browse the repository at this point in the history
testConstants does not have a `content` property, it has a `contents`
property.  Reference the correct name to make tests pass.
  • Loading branch information
coreyfarrell committed May 14, 2020
1 parent 3c67763 commit 0a488fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration.js
Expand Up @@ -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);

Expand Down

0 comments on commit 0a488fc

Please sign in to comment.