Skip to content

Commit aceb3ad

Browse files
committed
Fix tests
1 parent 7296f0b commit aceb3ad

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lsp-dart-flutter-daemon.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ PARAMS is the optional method params."
7676
(replace-regexp-in-string (regexp-quote "\n") "" it nil 'literal)
7777
(replace-regexp-in-string (regexp-quote "][") "]\n[" it nil 'literal)
7878
(split-string it "\n")
79-
(-map (lambda (el) (seq-first (lsp--read-json el))) it))))
79+
(-map (lambda (el) (lsp-seq-first (lsp--read-json el))) it))))
8080

8181
(defun lsp-dart-flutter-daemon-handle-events (raw-response)
8282
"Handle Flutter daemon events from RAW-RESPONSE."

lsp-dart-project.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ flutter cache dir."
9292
(apply #'message (concat prefix " " msg) args)))
9393

9494
(defun lsp-dart-project-custom-log (prefix msg &rest args)
95-
"Log MSG with custom PREFIX and ARGS."
95+
"Log with custom PREFIX the MSG and ARGS."
9696
(let ((base-prefix (propertize "[LSP Dart]" 'face 'font-lock-keyword-face))
9797
(custom-prefix (propertize prefix 'face 'font-lock-function-name-face)))
9898
(apply #'message (concat base-prefix " " custom-prefix " " msg) args)))

0 commit comments

Comments
 (0)