Skip to content

Commit

Permalink
Revert change and use 'to equal' instead of 'to contain' at test case
Browse files Browse the repository at this point in the history
  • Loading branch information
dasansol92 committed Jan 31, 2024
1 parent aff85f6 commit ad9c083
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ describe('Response console', { tags: ['@ess', '@serverless'] }, () => {
path: `${homeFilePath}/upload.zip`,
password: 'elastic',
}).then((unzippedFileContent) => {
expect(unzippedFileContent).to.contain(fileContent);
expect(unzippedFileContent).to.equal(fileContent);
});
});

Expand Down

0 comments on commit ad9c083

Please sign in to comment.