Skip to content

Commit

Permalink
#38: simplify fixKeys --like test for query
Browse files Browse the repository at this point in the history
  • Loading branch information
JoernBerkefeld committed Aug 1, 2023
1 parent 04f939c commit 18ea022
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/type.query.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ describe('type: query', () => {
);
return;
});
it('Should not fixKeys and deploy', async () => {
it('Should NOT fixKeys and deploy', async () => {
// WHEN
const resultFixKeys = await handler.fixKeys('testInstance/testBU', 'query', [
'testExisting_query',
Expand Down Expand Up @@ -391,7 +391,7 @@ describe('type: query', () => {
});
it('Should fixKeys and deploy via --like', async () => {
// WHEN
handler.setOptions({ like: { key: 'testExisting_query%' } });
handler.setOptions({ like: { key: 'testExisting_query_f%' } });
const resultFixKeys = await handler.fixKeys('testInstance/testBU', 'query');
assert.equal(
resultFixKeys['testInstance/testBU'].length,
Expand Down

0 comments on commit 18ea022

Please sign in to comment.