fix(core): remove duplicate @angular/common/http import in date-header-time-sync interceptor spec

This commit is contained in:
copilot-swe-agent[bot]
2026-07-03 07:35:00 +00:00
committed by GitHub
parent 28ef893ac2
commit aafcf5ce76
@@ -15,12 +15,11 @@
* limitations under the License.
*/
import { HTTP_INTERCEPTORS, provideHttpClient, withInterceptorsFromDi } from '@angular/common/http';
import { HTTP_INTERCEPTORS, HttpClient, provideHttpClient, withInterceptorsFromDi } from '@angular/common/http';
import { HttpTestingController, provideHttpClientTesting } from '@angular/common/http/testing';
import { TestBed } from '@angular/core/testing';
import { TimeSyncService } from '../services/time-sync.service';
import { DateHeaderTimeSyncInterceptor } from './date-header-time-sync.interceptor';
import { HttpClient } from '@angular/common/http';
describe('DateHeaderTimeSyncInterceptor', () => {
let httpMock: HttpTestingController;