fix project test

This commit is contained in:
Umur Ozkul 2022-08-19 18:27:50 +02:00
parent 975b1ffda8
commit bc7f1317da

View File

@ -135,7 +135,7 @@ let toStringResult = x =>
let toStringOptionResult = x =>
switch x {
| Some(a) => `${toStringResult(a)})`
| Some(a) => toStringResult(a)
| None => "None"
}