Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Maciej Barelkowski <[email protected]>
  • Loading branch information
jarekdanielak and barmac authored Jan 21, 2025
1 parent 775a580 commit c3dfdd6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/spec/xml/write.js
Original file line number Diff line number Diff line change
Expand Up @@ -773,9 +773,9 @@ describe('write', function() {
it('zeebe:AdHoc', async function() {

// given
const moddleElement = moddle.create('zeebe:AdHoc');
const moddleElement = moddle.create('zeebe:AdHoc', { activeElementsCollection: '= some collection' });

const expectedXML = '<zeebe:adHoc xmlns:zeebe="http://camunda.org/schema/zeebe/1.0" />';
const expectedXML = '<zeebe:adHoc xmlns:zeebe="http://camunda.org/schema/zeebe/1.0" activeElementsCollection="= some collection" />';

// when
const xml = await write(moddleElement);
Expand Down

0 comments on commit c3dfdd6

Please sign in to comment.