summaryrefslogtreecommitdiff
path: root/cider-test.el
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2018-06-28 15:26:36 +0200
committerBozhidar Batsov <bozhidar@batsov.com>2018-06-28 15:28:51 +0200
commit571036e9d092d6773dfd1885763821a793d1f1ce (patch)
treebe759940781876ea51a2a6aa891b4e5edd8e29af /cider-test.el
parent24db03d135475c9f451ad1b7bbe16d3ec8ddfe3a (diff)
Fix the test selector filtering functionality
It was broken due to a silly typo - "includes" and "excludes" should have actually been "include" and "exclude".
Diffstat (limited to 'cider-test.el')
-rw-r--r--cider-test.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/cider-test.el b/cider-test.el
index a84c3053..076b97aa 100644
--- a/cider-test.el
+++ b/cider-test.el
@@ -653,8 +653,8 @@ The include/exclude selectors will be used to filter the tests before
((eq :project ns) "test-all")
((eq :loaded ns) "test-all")
((eq :non-passing ns) "retest"))
- "includes" ,(when (listp include-selectors) include-selectors)
- "excludes" ,(when (listp exclude-selectors) exclude-selectors)
+ "include" ,(when (listp include-selectors) include-selectors)
+ "exclude" ,(when (listp exclude-selectors) exclude-selectors)
"ns" ,(when (stringp ns) ns)
"tests" ,(when (stringp ns) tests)
"load?" ,(when (or (stringp ns) (eq :project ns)) "true"))