From c0a42b414903a5a739a8bae1f61b03a2d29e9a11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Buczek?= Date: Tue, 17 Sep 2024 20:36:51 +0200 Subject: [PATCH] fix: #dev fix tests url --- .../components/data-download/data-download.component.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/game/components/data-menu/components/data-download/data-download.component.spec.ts b/src/app/game/components/data-menu/components/data-download/data-download.component.spec.ts index 400f504..84faeda 100644 --- a/src/app/game/components/data-menu/components/data-download/data-download.component.spec.ts +++ b/src/app/game/components/data-menu/components/data-download/data-download.component.spec.ts @@ -1,11 +1,11 @@ import { ComponentFixture, TestBed } from '@angular/core/testing'; import { DataDownloadComponent } from './data-download.component'; -import { GameDataSendingService } from '../../services/game-data-sending.service'; import { DataTransformService } from 'app/shared/services/data-transform.service'; import { TExchangeData } from '@gameModels/exchange-data.type'; import { By } from '@angular/platform-browser'; import { DebugElement } from '@angular/core'; import { HttpClient, HttpHandler } from '@angular/common/http'; +import { GameRecordEndpointsService } from '@endpoints/game-record-endpoints.service'; describe('DataDownloadComponent', () => { let component: DataDownloadComponent; @@ -15,7 +15,7 @@ describe('DataDownloadComponent', () => { await TestBed.configureTestingModule({ imports: [DataDownloadComponent], providers: [ - GameDataSendingService, + GameRecordEndpointsService, DataTransformService, HttpClient, HttpHandler,