Skip to content

Commit ec15835

Browse files
committed
Remove a redundant dependency to s.el
1 parent 0d74007 commit ec15835

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

clj-refactor.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
;; Benedek Fazekas <[email protected]>
99
;; Version: 2.4.0
1010
;; Keywords: convenience, clojure, cider
11-
;; Package-Requires: ((emacs "25.1") (s "1.8.0") (seq "2.19") (yasnippet "0.6.1") (paredit "24") (multiple-cursors "1.2.2") (clojure-mode "5.6.1") (cider "0.17.0") (edn "1.1.2") (inflections "2.3") (hydra "0.13.2"))
11+
;; Package-Requires: ((emacs "25.1") (seq "2.19") (yasnippet "0.6.1") (paredit "24") (multiple-cursors "1.2.2") (clojure-mode "5.6.1") (cider "0.17.0") (edn "1.1.2") (inflections "2.3") (hydra "0.13.2"))
1212

1313
;; This program is free software; you can redistribute it and/or
1414
;; modify it under the terms of the GNU General Public License

features/step-definitions/clj-refactor-steps.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@
146146

147147
(Then "^the file should be named \"\\([^\"]+\\)\"$"
148148
(lambda (file-name-postfix)
149-
(assert (s-ends-with? file-name-postfix (buffer-file-name)) nil "Expected %S to end with %S" (buffer-file-name) file-name-postfix)))
149+
(assert (string-suffix-p file-name-postfix (buffer-file-name)) nil "Expected %S to end with %S" (buffer-file-name) file-name-postfix)))
150150

151151
(And "^the cursor is inside the first defn form$"
152152
(lambda ()
@@ -523,4 +523,4 @@ pprint (cljs.pprint)}}"))))
523523

524524
(And "^I update artifact version to \"\\([^\"]+\\)\"$"
525525
(lambda (version)
526-
(cljr-update-project-dependency version)))
526+
(cljr-update-project-dependency version)))

0 commit comments

Comments
 (0)