From 3faa7439fa06f96e86b38192518da3851d63581e Mon Sep 17 00:00:00 2001 From: Thomas Poignant Date: Thu, 16 Jan 2025 09:06:32 +0100 Subject: [PATCH] fix linting Signed-off-by: Thomas Poignant --- .../go-feature-flag/src/lib/go-feature-flag-provider.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/providers/go-feature-flag/src/lib/go-feature-flag-provider.spec.ts b/libs/providers/go-feature-flag/src/lib/go-feature-flag-provider.spec.ts index ce6b1efaa..67151a2fc 100644 --- a/libs/providers/go-feature-flag/src/lib/go-feature-flag-provider.spec.ts +++ b/libs/providers/go-feature-flag/src/lib/go-feature-flag-provider.spec.ts @@ -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 () => { @@ -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', () => {