Skip to content

Commit ff65db8

Browse files
committed
Fixing analytics spec
1 parent b46b382 commit ff65db8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/analytics/analytics.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { ReflectiveInjector, Provider } from '@angular/core';
22
import { TestBed, inject } from '@angular/core/testing';
33
import { FirebaseApp, FirebaseOptionsToken, AngularFireModule, FirebaseNameOrConfigToken } from '@angular/fire';
4-
import { AngularFireAnalytics, AngularFireAnalyticsModule, ANALYTICS_COLLECTION_ENABLED, APP_VERSION, APP_NAME } from '@angular/fire/analytics';
4+
import { AngularFireAnalytics, AngularFireAnalyticsModule, COLLECTION_ENABLED, APP_VERSION, APP_NAME } from '@angular/fire/analytics';
55
import { COMMON_CONFIG } from './test-config';
66

77

@@ -52,7 +52,7 @@ describe('AngularFireAnalytics with different app', () => {
5252
providers: [
5353
{ provide: FirebaseNameOrConfigToken, useValue: FIREBASE_APP_NAME_TOO },
5454
{ provide: FirebaseOptionsToken, useValue: COMMON_CONFIG },
55-
{ provide: ANALYTICS_COLLECTION_ENABLED, useValue: true },
55+
{ provide: COLLECTION_ENABLED, useValue: true },
5656
{ provide: APP_VERSION, useValue: '0.0' },
5757
{ provide: APP_NAME, useValue: 'Test App!' }
5858
]

0 commit comments

Comments
 (0)