From 54e815a804f5ff5c0223ca34a08afc6d197e565f Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Wed, 18 Nov 2015 01:18:27 -0800 Subject: [PATCH] bump gotest-temp --- dotfiles/emacs.d/load.d/gotest-temp.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotfiles/emacs.d/load.d/gotest-temp.el b/dotfiles/emacs.d/load.d/gotest-temp.el index af63ae32..dbf16168 100644 --- a/dotfiles/emacs.d/load.d/gotest-temp.el +++ b/dotfiles/emacs.d/load.d/gotest-temp.el @@ -415,7 +415,7 @@ For example, if the current buffer is `foo.go', the buffer for (let* ((test-info (go-test--get-current-test-info)) (test-name (cadr test-info)) (test-suite (car test-info)) - (test-flag (if (length test-suite) "-m " "-run "))) + (test-flag (if (> (length test-suite) 0) "-m " "-run "))) (when test-name (if (go-test--is-gb-project) (go-test--gb-start (s-concat "-test.v=true -test.run=" test-name "$"))