diff options
author | William Carroll <wpcarro@gmail.com> | 2022-08-02T21·20-0700 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2022-08-03T20·23+0000 |
commit | db0cfd0616f7432516068f6cb680c0b7c25cde4b (patch) | |
tree | 11387e60c8edf413ac1439f8383276b5982ff9d6 /users/wpcarro/emacs/pkgs/cycle/tests.el | |
parent | 3461753478c2a8eff47c565d8729bbfd991f2729 (diff) |
refactor(wpcarro/emacs): Remove cycle.el's dep on maybe.el r/4379
More pruning on inter-library dependencies. Change-Id: I711ab92f2985b543ee2684752f9cdbf5559f2eaf Reviewed-on: https://cl.tvl.fyi/c/depot/+/6035 Reviewed-by: wpcarro <wpcarro@gmail.com> Autosubmit: wpcarro <wpcarro@gmail.com> Tested-by: BuildkiteCI
Diffstat (limited to 'users/wpcarro/emacs/pkgs/cycle/tests.el')
-rw-r--r-- | users/wpcarro/emacs/pkgs/cycle/tests.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/users/wpcarro/emacs/pkgs/cycle/tests.el b/users/wpcarro/emacs/pkgs/cycle/tests.el index e58c97bedbe2..29c0e2a0d582 100644 --- a/users/wpcarro/emacs/pkgs/cycle/tests.el +++ b/users/wpcarro/emacs/pkgs/cycle/tests.el @@ -5,7 +5,6 @@ (require 'ert) (require 'cycle) (require 'dash) -(require 'maybe) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Tests @@ -15,7 +14,7 @@ (ert-deftest cycle-initializes-properly () (should (= 3 (cycle-count xs))) - (should (maybe-nil? (cycle-previous-focus xs))) + (should (null (cycle-previous-focus xs))) (should (cycle-contains? 1 xs)) (should (cycle-contains? 2 xs)) (should (cycle-contains? 3 xs))) |