diff options
-rw-r--r-- | tests/tissue.scm | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/tests/tissue.scm b/tests/tissue.scm index 6fb01fa..b2aa8e0 100644 --- a/tests/tissue.scm +++ b/tests/tissue.scm @@ -1,5 +1,5 @@ ;;; tissue --- Text based issue tracker -;;; Copyright © 2022 Arun Isaac <arunisaac@systemreboot.net> +;;; Copyright © 2022, 2023 Arun Isaac <arunisaac@systemreboot.net> ;;; ;;; This file is part of tissue. ;;; @@ -18,13 +18,6 @@ (import (srfi srfi-64)) -(define pairify - (@@ (tissue tissue) pairify)) - (test-begin "tissue") -(test-equal "pairify" - '((1 . 2) (3 . 4) (5 . 6)) - (pairify (list 1 2 3 4 5 6))) - (test-end "tissue") |