Skip to content

Commit

Permalink
fix code review items
Browse files Browse the repository at this point in the history
  • Loading branch information
anmonteiro authored and mlms13 committed May 25, 2021
1 parent 3166450 commit a6e44ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion __tests__/extensions/Relude_Extensions_Ord_test.re
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
open Jest;
open Expect;
open !Relude.Globals;
open! Relude.Globals;
open BsBastet.Interface;

module User = {
Expand Down
2 changes: 1 addition & 1 deletion __tests__/js/Relude_Js_Json_test.re
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit a6e44ea

Please sign in to comment.