Skip to content
This repository has been archived by the owner on Apr 20, 2018. It is now read-only.

Fix "___" is not defined #10

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/07_about_mapping.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ test('flatMapLatest only gets us the latest value', function () {
var results = [];
Observable.range(1, 3)
.flatMapLatest(function (x) {
return Observable.range(x, ___);
return Observable.range(x, __);
})
.subscribe(results.push.bind(results));

Expand Down