summaryrefslogtreecommitdiff
path: root/test/cider-tests--no-auto.el
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2017-12-24 18:49:46 +0200
committerBozhidar Batsov <bozhidar@batsov.com>2017-12-24 18:49:46 +0200
commit164ffa2e9fa90664d8524082f801e2e7fcca88ab (patch)
treefe404da14ceb7cb5cec3b4d3c60395a041a37865 /test/cider-tests--no-auto.el
parent337352d6ce9f0d040f0ae562e6f5dfe581f47140 (diff)
Replace a few occurrences of when + not with unless
Diffstat (limited to 'test/cider-tests--no-auto.el')
-rw-r--r--test/cider-tests--no-auto.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cider-tests--no-auto.el b/test/cider-tests--no-auto.el
index ad7e95f2..0b7db012 100644
--- a/test/cider-tests--no-auto.el
+++ b/test/cider-tests--no-auto.el
@@ -85,7 +85,7 @@ from the latter. Remaining content is compared for string equality."
(let ((name (cond ((symbolp sym) (symbol-name sym))
((listp sym) (symbol-name (cadr sym))))))
(if name
- (when (not (cider-test-doc name))
+ (unless (cider-test-doc name)
(setq diffs (cons sym diffs)))
(setq untested (cons sym untested)))))
(when untested