Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jaschdoc committed Dec 11, 2022
1 parent f17c6d4 commit c7391bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/TestParser.flix
Original file line number Diff line number Diff line change
Expand Up @@ -925,14 +925,14 @@ namespace TestParser {

@test
def nibble03(): Bool =
let input = fromString(""); // `succeed` yields whatever
let input = fromString(""); // `succeed` yields whatever
let actual = input |> (nibble(succeed(" "))); // it's passed regardless of
let expected = (" ", Nil) :: Nil; // any function that processes the input
Assert.eq(expected, actual)

@test
def nibble04(): Bool =
let input = fromString(""); // `succeed` yields whatever
let input = fromString(""); // `succeed` yields whatever
let actual = input |> (nibble(succeed(" abc "))); // it's passed regardless of
let expected = (" abc ", Nil) :: Nil; // any function that processes the input
Assert.eq(expected, actual)
Expand Down

0 comments on commit c7391bb

Please sign in to comment.