Skip to content

Commit

Permalink
fix(#293): semi
Browse files Browse the repository at this point in the history
  • Loading branch information
maxonfjvipon committed Jun 6, 2024
1 parent e0ed25a commit 3bda3b3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/test_mvnw.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ describe('mvnw', function() {
target: 'target',
parser: 'parser',
homeTag: 'homeTag'
}
};
mvnw(['--version', '--quiet', ...flags(opts)]).then((args) => {
assert.ok(args.includes('-Deo.tag=homeTag'))
assert.ok(args.includes('-Deo.version=parser'))
assert.ok(args.includes('-Deo.tag=homeTag'));
assert.ok(args.includes('-Deo.version=parser'));
done();
})
});
});
});

0 comments on commit 3bda3b3

Please sign in to comment.