Skip to content

Commit

Permalink
Temp fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Kovalenko committed Jun 12, 2024
1 parent fe566d3 commit a7ea03d
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import {
} from '@spryker-oryx/core';
import { HttpTestService } from '@spryker-oryx/core/testing';
import { createInjector, destroyInjector } from '@spryker-oryx/di';
import { GlueProductAdapter } from '@spryker-oryx/product';
import { featureVersion } from '@spryker-oryx/utilities';
import { of } from 'rxjs';
import { ApiProductModel } from '../../../models';
Expand Down Expand Up @@ -44,7 +45,7 @@ describe('GlueProductService', () => {
},
{
provide: ProductAdapter,
useClass: DefaultProductAdapter,
useClass: GlueProductAdapter,
},
{
provide: 'SCOS_BASE_URL',
Expand All @@ -70,7 +71,7 @@ describe('GlueProductService', () => {
});

it('should be provided', () => {
expect(service).toBeInstanceOf(DefaultProductAdapter);
expect(service).toBeInstanceOf(GlueProductAdapter);
});

describe('get', () => {
Expand Down

0 comments on commit a7ea03d

Please sign in to comment.