Skip to content

Commit

Permalink
CB-5753 pass args correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
devnaumov committed Oct 16, 2024
1 parent e1f70a5 commit 4d8c75d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ describe('NodeManagerUtils', () => {

describe('concatSchemaAndCatalog', () => {
it('should concatenate schemaId and catalogId with "@" when both are provided', () => {
const result = NodeManagerUtils.concatSchemaAndCatalog('schema1', 'catalog1');
const result = NodeManagerUtils.concatSchemaAndCatalog('catalog1', 'schema1');
expect(result).toBe('schema1@catalog1');
});

Expand Down

0 comments on commit 4d8c75d

Please sign in to comment.