Skip to content

Commit

Permalink
Ex2 test fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-north committed May 15, 2018
1 parent c4ba6ff commit 16f7a87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/ex02.subscribe-to-obs-from-promise.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class SubscribeToPromiseObservableTests {
}
@test('All values in the sequence are strings')
public async valueTypes() {
let op = nextValueFrom(observableForNotoficationPermission());
let op = nextValueFrom(observableFromPromise());
notificationPermission$.next('granted');
let result = await op;
assert.equal(typeof result, 'string');
Expand Down

0 comments on commit 16f7a87

Please sign in to comment.