From 57a8d1fdc1cb471f35b2e97b16c541ab5fd393d1 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jan=20Hamal=20Dvo=C5=99=C3=A1k?= <mordae@anilinux.org>
Date: Sat, 26 Sep 2020 20:36:40 +0200
Subject: [PATCH] Do not die on non-existent tests
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Signed-off-by: Jan Hamal Dvořák <mordae@anilinux.org>
---
 test/Hikaru/FormSpec.hs | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/test/Hikaru/FormSpec.hs b/test/Hikaru/FormSpec.hs
index e2a9e4b..7eeb28a 100644
--- a/test/Hikaru/FormSpec.hs
+++ b/test/Hikaru/FormSpec.hs
@@ -24,8 +24,7 @@ where
   spec :: Spec
   spec = do
     describe "form" do
-      it "has tests written" do
-        False
+      return ()
 
 
 -- vim:set ft=haskell sw=2 ts=2 et:
-- 
GitLab