rspeele / TaskBuilder.fs

F# computation expression builder for System.Threading.Tasks
Creative Commons Zero v1.0 Universal
235 stars 27 forks source link

Fix exception check on tests #33

Open gusty opened 3 years ago

gusty commented 3 years ago

These tests were catching all exceptions, even the interesting ones. Try changing require (not ran) "ran kinda early" to require (ran) "ran kinda early" and you'll see the test still pass. This PR fix it by pattern matching on the exception.