bump gotest-temp

This commit is contained in:
Ivan Malison 2015-11-18 01:18:27 -08:00
parent 3352c38e7d
commit 54e815a804

View File

@ -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)) (let* ((test-info (go-test--get-current-test-info))
(test-name (cadr test-info)) (test-name (cadr test-info))
(test-suite (car 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 (when test-name
(if (go-test--is-gb-project) (if (go-test--is-gb-project)
(go-test--gb-start (s-concat "-test.v=true -test.run=" test-name "$")) (go-test--gb-start (s-concat "-test.v=true -test.run=" test-name "$"))