tracks/elm/exercises/series/tests/Tests.elm in trackler-2.2.1.104 vs tracks/elm/exercises/series/tests/Tests.elm in trackler-2.2.1.105
- old
+ new
@@ -1,10 +1,10 @@
module Tests exposing (..)
-import Test exposing (..)
import Expect
import Series exposing (slices)
+import Test exposing (..)
tests : Test
tests =
describe "Series"
@@ -38,10 +38,10 @@
Expect.equal (Ok [])
(slices 4 "012")
, skip <|
test "overly short slice" <|
\() ->
- Expect.equal (Err ("Invalid size: 0"))
+ Expect.equal (Err "Invalid size: 0")
(slices 0 "01234")
, skip <|
test "input has non numbers" <|
\() ->
Expect.equal (Err "could not convert string 'a' to an Int")