From 0416aef11997d9b3ad070c7c0cfc8c16da74b307 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Thu, 28 Jul 2022 08:41:35 -0400 Subject: [PATCH] spelling: collision Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- tests/tests/Test/Dict.elm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests/Test/Dict.elm b/tests/tests/Test/Dict.elm index 372b2c92..f5a2eafa 100644 --- a/tests/tests/Test/Dict.elm +++ b/tests/tests/Test/Dict.elm @@ -41,7 +41,7 @@ tests = combineTests = describe "combine Tests" [ test "union" <| \() -> Expect.equal animals (Dict.union (Dict.singleton "Jerry" "mouse") (Dict.singleton "Tom" "cat")) - , test "union collison" <| \() -> Expect.equal (Dict.singleton "Tom" "cat") (Dict.union (Dict.singleton "Tom" "cat") (Dict.singleton "Tom" "mouse")) + , test "union collision" <| \() -> Expect.equal (Dict.singleton "Tom" "cat") (Dict.union (Dict.singleton "Tom" "cat") (Dict.singleton "Tom" "mouse")) , test "intersect" <| \() -> Expect.equal (Dict.singleton "Tom" "cat") (Dict.intersect animals (Dict.singleton "Tom" "cat")) , test "diff" <| \() -> Expect.equal (Dict.singleton "Jerry" "mouse") (Dict.diff animals (Dict.singleton "Tom" "cat")) ]