diff options
Diffstat (limited to '')
-rw-r--r-- | stdlib/test/test/lux/control/reader.lux | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/test/test/lux/control/reader.lux b/stdlib/test/test/lux/control/reader.lux index f7aa8630f..b3e89f353 100644 --- a/stdlib/test/test/lux/control/reader.lux +++ b/stdlib/test/test/lux/control/reader.lux @@ -27,7 +27,7 @@ (let [(^open "io/") io;Monad<IO>] (test "Can add reader functionality to any monad." (|> (do (&;ReaderT io;Monad<IO>) - [a (&;lift-reader (io/wrap 123)) + [a (&;lift (io/wrap 123)) b (wrap 456)] (wrap (i.+ a b))) (&;run "") |