Skip to content

Commit

Permalink
samples: tests: Test stdout, not stderr. (#96)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenplusplus authored Nov 28, 2017
1 parent 5aaa36e commit ec74a68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion samples/system-test/encryption.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,5 +113,5 @@ test.serial(`should rotate keys`, async t => {
`${cmd} rotate ${bucketName} ${fileName} ${key} ${newKey}`,
cwd
);
t.is(results.stdout + results.stderr, 'Encryption key rotated successfully.');
t.is(results.stdout, 'Encryption key rotated successfully.');
});

0 comments on commit ec74a68

Please sign in to comment.