Skip to content

Commit

Permalink
More test fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mdgriffith committed Oct 6, 2024
1 parent be52713 commit a1b4451
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion tests/File.elm
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,11 @@ six arg =
|> Elm.expose
]
)
"""module Test exposing (five, four, fourPointFive, one, six)
"""module Test exposing
( one
, four, fourPointFive
, five, six
)
{-|
@docs one
Expand Down
2 changes: 1 addition & 1 deletion tests/Module.elm
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ fileGeneration =
test "File Generation" <|
\_ ->
Expect.equal (Declare.toFile mod |> .contents)
(String.trim """module Virtual.Module exposing (MyInt, MyType, myFn)
(String.trim """module Virtual.Module exposing ( MyInt, MyType, myFn )
{-|
@docs MyInt, MyType, myFn
Expand Down

0 comments on commit a1b4451

Please sign in to comment.