Skip to content

Commit

Permalink
Merge pull request #1079 from JupiterOne/fix-require-spec-error-order
Browse files Browse the repository at this point in the history
Reorder toEqual in toImplementSpec
  • Loading branch information
Nick-NCSU authored May 14, 2024
2 parents 8e59967 + 4224271 commit fa9129b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/integration-sdk-testing/src/jest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -766,7 +766,7 @@ export function toImplementSpec<
.sort();

try {
expect(integrationStepIds).toEqual(specStepIds);
expect(specStepIds).toEqual(integrationStepIds);
} catch (err) {
return {
message: () =>
Expand Down

0 comments on commit fa9129b

Please sign in to comment.