Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tests: Fix bad test case that always passes
Follows-up #1335, which was missing the quotes on the tap-outputs key, and thus the unit test was seeing expectedOutput[command] as `undefined`, which was then passed to RegExp as `new RegExp(undefined)`, which produces /(?:)/, which is a no-op that always matches, so re.test(output) === true. Yay me for writing a useless test. Ref #1333.
- Loading branch information