From 688d2ce0023a0bccdd1a29a040f8bc0185dc097c Mon Sep 17 00:00:00 2001 From: Mateus Leite Date: Fri, 19 Jul 2024 03:02:42 -0300 Subject: [PATCH] Remove Test.only's --- tests/Install/ElementToListTest.elm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/Install/ElementToListTest.elm b/tests/Install/ElementToListTest.elm index 4e31098..1a06340 100644 --- a/tests/Install/ElementToListTest.elm +++ b/tests/Install/ElementToListTest.elm @@ -8,9 +8,9 @@ import Test exposing (Test, describe) all : Test all = describe "Install.ElementToList" - [ Run.testFix test1 |> Run.withOnly - , Run.expectNoErrorsTest "should not report error when the field already exists" src0 rule1 |> Run.withOnly - , Run.testFix test2 |> Run.withOnly + [ Run.testFix test1 + , Run.expectNoErrorsTest "should not report error when the field already exists" src0 rule1 + , Run.testFix test2 ]