Skip to content

Commit

Permalink
make distinct names for elm-test-rs
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianHicks committed Jan 6, 2021
1 parent f461a73 commit e8aa5eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/Datalog/AtomTests.elm
Expand Up @@ -9,7 +9,7 @@ import Test exposing (..)

isGroundTest : Test
isGroundTest =
describe "isGround"
describe "atom isGround"
[ test "if there are terms, the atom is ground" <|
\_ -> atom "x" [] |> isGround |> Expect.equal False
, test "if all terms are constant, the atom is ground" <|
Expand Down
2 changes: 1 addition & 1 deletion tests/Datalog/TermTests.elm
Expand Up @@ -7,7 +7,7 @@ import Test exposing (..)

isGroundTest : Test
isGroundTest =
describe "isGround"
describe "term isGround"
[ test "a string is ground" <|
\_ -> string "a" |> isGround |> Expect.equal True
, test "an integer is ground" <|
Expand Down

0 comments on commit e8aa5eb

Please sign in to comment.