Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Poignant <[email protected]>
  • Loading branch information
thomaspoignant committed Jan 16, 2025
1 parent 622f245 commit 3faa743
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -898,7 +898,7 @@ describe('GoFeatureFlagProvider', () => {
],
meta: { provider: 'open-feature-js-sdk' },
};
expect(want).toEqual(got);
expect(got).toEqual(want);
});

it('should call the data collector when waiting more than the dataFlushInterval', async () => {
Expand Down Expand Up @@ -1046,7 +1046,7 @@ describe('GoFeatureFlagProvider', () => {
],
meta: { provider: 'js', openfeature: true, nodeJSVersion: '14.17.0', appVersion: '1.0.0', identifier: 123 },
};
expect(want).toEqual(got);
expect(got).toEqual(want);
});
});
describe('polling', () => {
Expand Down

0 comments on commit 3faa743

Please sign in to comment.