Skip to content

Commit

Permalink
Uncomment test
Browse files Browse the repository at this point in the history
  • Loading branch information
npasserini committed Dec 6, 2018
1 parent 2123c12 commit 36137b4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ class TestCollection {
// XPECT type at fold --> Number
const fold = sample.fold(0, { accum, elem => accum + elem })

// XPECT! type at allEven --> List<Boolean>
// const allEven = sample.fold(true, { accum, elem => accum && elem.even() })
// XPECT type at allEven --> Boolean
const allEven = sample.fold(true, { accum, elem => accum && elem.even() })
}
}

Expand Down

0 comments on commit 36137b4

Please sign in to comment.