File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -166,22 +166,22 @@ test_cancel = test "cancel" do
166166 v1 ← AVar .new " "
167167 c1 ← AVar .put " a" v1 $ traverse_ \_ → void $ Ref .modify (_ <> " a" ) ref
168168 c2 ← AVar .put " b" v1 $ traverse_ \_ → void $ Ref .modify (_ <> " b" ) ref
169- c3 ← AVar .put " c" v1 $ traverse_ \_ → void $ Ref .modify (_ <> " c" ) ref
169+ _ ← AVar .put " c" v1 $ traverse_ \_ → void $ Ref .modify (_ <> " c" ) ref
170170 c1
171171 c2
172172 _ ← AVar .tryTake v1
173173 _ ← AVar .tryTake v1
174174 _ ← AVar .tryTake v1
175175 v2 ← AVar .empty
176- c4 ← AVar .take v2 $ traverse_ \_ → void $ Ref .modify (_ <> " d" ) ref
176+ _ ← AVar .take v2 $ traverse_ \_ → void $ Ref .modify (_ <> " d" ) ref
177177 c5 ← AVar .take v2 $ traverse_ \_ → void $ Ref .modify (_ <> " e" ) ref
178- c6 ← AVar .take v2 $ traverse_ \_ → void $ Ref .modify (_ <> " f" ) ref
178+ _ ← AVar .take v2 $ traverse_ \_ → void $ Ref .modify (_ <> " f" ) ref
179179 c5
180180 _ ← AVar .tryPut " a" v2
181181 _ ← AVar .tryPut " b" v2
182182 _ ← AVar .tryPut " c" v2
183183 v3 ← AVar .empty
184- c7 ← AVar .read v3 $ traverse_ \_ → void $ Ref .modify (_ <> " g" ) ref
184+ _ ← AVar .read v3 $ traverse_ \_ → void $ Ref .modify (_ <> " g" ) ref
185185 c8 ← AVar .read v3 $ traverse_ \_ → void $ Ref .modify (_ <> " h" ) ref
186186 c9 ← AVar .read v3 $ traverse_ \_ → void $ Ref .modify (_ <> " i" ) ref
187187 c8
You can’t perform that action at this time.
0 commit comments