branch: externals/dape
commit a8828b22b6d5e66c479e8e923421f3d3b687b74d
Author: Daniel Pettersson <[email protected]>
Commit: Daniel Pettersson <[email protected]>
Fix bug in source buffer tests
---
dape-tests.el | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/dape-tests.el b/dape-tests.el
index 7570332b2c..745fbc8712 100644
--- a/dape-tests.el
+++ b/dape-tests.el
@@ -604,9 +604,8 @@ Expects line with string \"breakpoint\" in source."
;; contents
(with-current-buffer (dape--info-get-buffer-create 'dape-info-sources-mode)
(revert-buffer)
- (dape-test--should
- (dape-test--line-at-regex "^os ")
- (dape-test--line-at-regex "^util "))
+ (dape-test--should (dape-test--line-at-regex "^os "))
+ (dape-test--should (dape-test--line-at-regex "^util "))
(dape-test--apply-to-match "^os " 'dape-info-sources-goto))
(dape-test--should
(member "*dape-source os*" (mapcar 'buffer-name (buffer-list))))))