Skip to content

Commit

Permalink
test: always sort params
Browse files Browse the repository at this point in the history
  • Loading branch information
janhenrikoverland committed Aug 8, 2024
1 parent 081e482 commit 240c429
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/analytics/__tests__/AnalyticsBase.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ describe('generateDimensionString', () => {
items: ['item1'],
},
],
output: ['dim2:item2;item1', 'dim1:item1'],
output: ['dim1:item1', 'dim2:item2;item1'],
outputSorted: ['dim1:item1', 'dim2:item1;item2'],
},
]
Expand Down

0 comments on commit 240c429

Please sign in to comment.