Skip to content

Commit 3faa743

Browse files
fix linting
Signed-off-by: Thomas Poignant <[email protected]>
1 parent 622f245 commit 3faa743

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libs/providers/go-feature-flag/src/lib/go-feature-flag-provider.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -898,7 +898,7 @@ describe('GoFeatureFlagProvider', () => {
898898
],
899899
meta: { provider: 'open-feature-js-sdk' },
900900
};
901-
expect(want).toEqual(got);
901+
expect(got).toEqual(want);
902902
});
903903

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

0 commit comments

Comments
 (0)