Skip to content

Commit a2fc699

Browse files
Merge pull request #78 from angular/master
Refresh maintainers list
2 parents ce7c4f1 + 76f7212 commit a2fc699

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/auth/auth.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ describe('AngularFireAuth', () => {
7171
});
7272
});
7373

74-
it('should be exist', () => {
74+
it('should exist', () => {
7575
expect(afAuth instanceof AngularFireAuth).toBe(true);
7676
});
7777

src/firestore/firestore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export function associateQuery(collectionRef: CollectionReference, queryFn = ref
5959
* import { Component } from '@angular/core';
6060
* import { AngularFirestore, AngularFirestoreCollection, AngularFirestoreDocument } from '@angular/fire/firestore';
6161
* import { Observable } from 'rxjs/Observable';
62-
* import { from } from 'rxjs/observable/from';
62+
* import { from } from 'rxjs/observable';
6363
*
6464
* @Component({
6565
* selector: 'app-my-component',

src/functions/functions.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ describe('AngularFireFunctions', () => {
2626
done();
2727
});
2828

29-
it('should be exist', () => {
29+
it('should exist', () => {
3030
expect(afFns instanceof AngularFireFunctions).toBe(true);
3131
});
3232

src/performance/performance.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ describe('AngularFirePerformance', () => {
2525
done();
2626
});
2727

28-
it('should be exist', () => {
28+
it('should exist', () => {
2929
expect(afp instanceof AngularFirePerformance).toBe(true);
3030
});
3131

3232
it('should have the Performance instance', () => {
3333
expect(afp.performance).toBeDefined();
3434
});
3535

36-
});
36+
});

0 commit comments

Comments
 (0)