Skip to content

Commit b959a0b

Browse files
committed
Make display-warning as :debug instead :warning
1 parent 96119ca commit b959a0b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ test: clean $(ELCS)
2222
"(let ((default-directory (expand-file-name \".cask\" default-directory))) \
2323
(normal-top-level-add-subdirs-to-load-path) \
2424
(require 'buttercup))" \
25+
--eval "(setq warning-minimum-log-level :debug)" \
2526
-f buttercup-run-discover
2627

2728
clean:

tests/e2e/test-sanity.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@
3838

3939
(describe "var: `phpactor-install-directory'"
4040
(it "should have some value"
41-
(display-warning 'buttercup (format "phpactor install folder is : %s" phpactor-install-directory))
41+
(display-warning 'buttercup (format "phpactor install folder is : %s" phpactor-install-directory) :debug)
4242
(expect phpactor-install-directory :not :to-be nil)
4343
))
4444

4545
(describe ": `phpactor--lisp-directory'" ;; I prefer having a test as I'm not that really fine with it being nil
4646
(it "should have some value"
47-
(display-warning 'buttercup (format "phpactor lisp folder is : %s" phpactor--lisp-directory))
47+
(display-warning 'buttercup (format "phpactor lisp folder is : %s" phpactor--lisp-directory) :debug)
4848
(expect phpactor--lisp-directory :not :to-be nil)
4949
))
5050

0 commit comments

Comments
 (0)