Fix invalid Elm source code in tests

This commit is contained in:
Jeroen Engels 2024-07-06 08:36:47 +02:00
parent 06237c7fc9
commit 5a82e53388

View File

@ -139,8 +139,7 @@ button = 1
\() -> \() ->
testRuleWithHtmlDependency """ testRuleWithHtmlDependency """
import Html exposing (..) import Html exposing (..)
a = let a = let button = 1
button = 1
in button in button
""" """
|> Review.Test.expectNoErrors |> Review.Test.expectNoErrors
@ -156,8 +155,7 @@ port button : (() -> msg) -> Sub msg
\() -> \() ->
testRuleWithHtmlDependency """ testRuleWithHtmlDependency """
import Html exposing (..) import Html exposing (..)
a = let a = let button = 1
button = 1
in button in button
""" """
|> Review.Test.expectNoErrors |> Review.Test.expectNoErrors
@ -165,8 +163,7 @@ a = let
\() -> \() ->
testRuleWithHtmlDependency """ testRuleWithHtmlDependency """
import Html exposing (..) import Html exposing (..)
a = let a = let button = 1
button = 1
in 2 in 2
b = button b = button
""" """
@ -176,7 +173,7 @@ b = button
, details = details , details = details
, under = "button" , under = "button"
} }
|> Review.Test.atExactly { start = { row = 8, column = 5 }, end = { row = 8, column = 11 } } |> Review.Test.atExactly { start = { row = 7, column = 5 }, end = { row = 7, column = 11 } }
] ]
, test "should not report the use of `button` if it is shadowed by an accessible parameter" <| , test "should not report the use of `button` if it is shadowed by an accessible parameter" <|
\() -> \() ->