diff --git a/__tests__/extensions/Relude_Extensions_Ord_test.re b/__tests__/extensions/Relude_Extensions_Ord_test.re index 237edee2..e79887bf 100644 --- a/__tests__/extensions/Relude_Extensions_Ord_test.re +++ b/__tests__/extensions/Relude_Extensions_Ord_test.re @@ -1,6 +1,6 @@ open Jest; open Expect; -open !Relude.Globals; +open! Relude.Globals; open BsBastet.Interface; module User = { diff --git a/__tests__/js/Relude_Js_Json_test.re b/__tests__/js/Relude_Js_Json_test.re index ed579552..66fe44f8 100644 --- a/__tests__/js/Relude_Js_Json_test.re +++ b/__tests__/js/Relude_Js_Json_test.re @@ -792,7 +792,7 @@ describe("Json", () => { let actual = MyType.make <$> (JD.stringAt(0, json) >>= (a => VOk(a ++ a))) // bind (flatMap) a value here just for fun - <*> (JD.intAt(1, json) <$$> (a => a * 2)) // map a value here - <#> is flipMap - we need to flip it b/c the Validation comes first here + <*> (JD.intAt(1, json) <$$> (a => a * 2)) // map a value here - <$$> is flipMap - we need to flip it b/c the Validation comes first here <*> JD.boolAt(2, json) <*> JD.arrayAt(3, (_index, json) => JD.string(json), json) <*> JD.floatAt(4, json)