Skip to content

Commit

Permalink
adjust tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergej-Vlasov committed Dec 24, 2024
1 parent 626e057 commit db63ed8
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -322,9 +322,9 @@ describe.each(['11.1.2', '11.1.1'])('QueryVariable', (v) => {
await lastValueFrom(variable.validateAndUpdate());

expect(variable.state.options).toEqual([
{ label: 'val1', value: 'val1' },
{ label: 'val2', value: 'val2' },
{ label: 'val11', value: 'val11' },
{ label: 'val2', value: 'val2' },
{ label: 'val1', value: 'val1' },
]);
});

Expand All @@ -339,9 +339,9 @@ describe.each(['11.1.2', '11.1.1'])('QueryVariable', (v) => {
await lastValueFrom(variable.validateAndUpdate());

expect(variable.state.options).toEqual([
{ label: 'val11', value: 'val11' },
{ label: 'val2', value: 'val2' },
{ label: 'val1', value: 'val1' },
{ label: 'val2', value: 'val2' },
{ label: 'val11', value: 'val11' },
]);
});

Expand Down

0 comments on commit db63ed8

Please sign in to comment.