Skip to content

Commit 77eb2c8

Browse files
authored
Merge pull request #167 from andys8/improvement/template-elm-test-syntax
Test template syntax using underscore
2 parents e3efa79 + 92737bd commit 77eb2c8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

template/tests/Tests.elm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ all : Test
1212
all =
1313
describe "A Test Suite"
1414
[ test "Addition" <|
15-
\() ->
15+
\_ ->
1616
Expect.equal 10 (3 + 7)
1717
, test "String.left" <|
18-
\() ->
18+
\_ ->
1919
Expect.equal "a" (String.left 1 "abcdefg")
2020
, test "This test should fail" <|
21-
\() ->
21+
\_ ->
2222
Expect.fail "failed as expected!"
2323
]

0 commit comments

Comments
 (0)