File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 55- ensure ` cleanup ` is run in the presence of exceptions in
66 - ` STM_sequential.agree_prop ` and ` STM_domain.agree_prop_par `
77 - ` Lin_thread.lin_prop ` and ` Lin_effect.lin_prop `
8+ - #312 : Escape and quote ` bytes ` printed with ` STM ` 's ` bytes ` combinator
89
910## 0.1.1
1011
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ let int32 = (Int32, Int32.to_string)
3131let int64 = (Int64 , Int64. to_string)
3232let float = (Float , Float. to_string)
3333let string = (String , fun s -> Printf. sprintf " %S" s)
34- let bytes = (Bytes , fun b -> QCheck.Print. string (Bytes. to_string b))
34+ let bytes = (Bytes , fun b -> Printf. sprintf " %S " (Bytes. to_string b))
3535let option spec =
3636 let (ty,show) = spec in
3737 (Option ty, QCheck.Print. option show)
You can’t perform that action at this time.
0 commit comments