We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d830ca6 commit cf55e90Copy full SHA for cf55e90
cider-test.el
@@ -563,8 +563,7 @@ The default implementation uses the simple Leiningen convention of appending
563
This uses the Leiningen convention of appending '-test' to the namespace name."
564
(when ns
565
(let ((suffix "-test"))
566
- ;; string-suffix-p is only available in Emacs 24.4+
567
- (if (string-match-p (rx-to-string `(: ,suffix eos) t) ns)
+ (if (string-suffix-p suffix ns)
568
ns
569
(concat ns suffix)))))
570
0 commit comments