diff options
| author | John Wiegley | 2017-12-07 13:23:36 -0800 |
|---|---|---|
| committer | John Wiegley | 2017-12-07 13:23:36 -0800 |
| commit | 93231ecbab5a3567fbc5fb3e0c75df6dee983a07 (patch) | |
| tree | d1cfa1188f0e9b7054be5ace80d6f0161624447a /test | |
| parent | 8cf7b17dae39b8fe5739fc86f9f78c389ecc9590 (diff) | |
| download | emacs-93231ecbab5a3567fbc5fb3e0c75df6dee983a07.tar.gz emacs-93231ecbab5a3567fbc5fb3e0c75df6dee983a07.zip | |
Fix the tests
Diffstat (limited to 'test')
| -rw-r--r-- | test/lisp/use-package/use-package-tests.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/lisp/use-package/use-package-tests.el b/test/lisp/use-package/use-package-tests.el index 08ac5293a99..f1e6bb00165 100644 --- a/test/lisp/use-package/use-package-tests.el +++ b/test/lisp/use-package/use-package-tests.el | |||
| @@ -1087,7 +1087,7 @@ | |||
| 1087 | :hook (emacs-lisp-mode . function)) | 1087 | :hook (emacs-lisp-mode . function)) |
| 1088 | `(progn | 1088 | `(progn |
| 1089 | (eval-and-compile | 1089 | (eval-and-compile |
| 1090 | (add-to-list 'load-path "/Users/johnw/.emacs.d/foo")) | 1090 | (add-to-list 'load-path ,(pred stringp))) |
| 1091 | (eval-after-load 'elisp-mode | 1091 | (eval-after-load 'elisp-mode |
| 1092 | '(progn | 1092 | '(progn |
| 1093 | (unless (fboundp 'function) | 1093 | (unless (fboundp 'function) |
| @@ -1103,7 +1103,7 @@ | |||
| 1103 | :hook (emacs-lisp-mode . (lambda () (function)))) | 1103 | :hook (emacs-lisp-mode . (lambda () (function)))) |
| 1104 | `(progn | 1104 | `(progn |
| 1105 | (eval-and-compile | 1105 | (eval-and-compile |
| 1106 | (add-to-list 'load-path "/Users/johnw/.emacs.d/foo")) | 1106 | (add-to-list 'load-path ,(pred stringp))) |
| 1107 | (eval-after-load 'elisp-mode | 1107 | (eval-after-load 'elisp-mode |
| 1108 | '(progn | 1108 | '(progn |
| 1109 | (require 'erefactor nil nil) | 1109 | (require 'erefactor nil nil) |