Skip to content

Commit 073214f

Browse files
authored
Run test_put_read_take from the test-suite (#16)
1 parent 0452014 commit 073214f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/Main.purs

+2-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ test_put_read_take = test "put/read/take" do
7575
void $ Ref.modify (_ <> val <> "baz") ref
7676
_ ← AVar.take var $ traverse_ \val →
7777
void $ Ref.modify (_ <> val) ref
78-
eq "foobazfoobar" <$> Ref.read ref
78+
eq "barfoobazfoo" <$> Ref.read ref
7979

8080
test_take_put Effect Unit
8181
test_take_put = test "take/put" do
@@ -198,6 +198,7 @@ main = do
198198
test_tryTake_full
199199
test_tryTake_empty
200200
test_put_take
201+
test_put_read_take
201202
test_take_put
202203
test_take_read_put
203204
test_read_put_take

0 commit comments

Comments
 (0)