summaryrefslogtreecommitdiff
path: root/cider-test.el
diff options
context:
space:
mode:
authorVitalie Spinu <spinuvit@gmail.com>2014-09-07 19:30:46 -0700
committerVitalie Spinu <spinuvit@gmail.com>2014-09-08 20:04:30 -0700
commitd6dcc140d73805c110153766a69efb491406fc80 (patch)
tree2dfe160094763c8b5fde6adc6df2eae04f571762 /cider-test.el
parent14ac115db40e66a8e608a9b823e79cd6d0bf6af2 (diff)
[Fix #776, #773, #733] Rewrite bencode decoder
- nREPL dicts are now plists and accessor api is given by `nrepl-dict-p`, `nrepl-dict-get` and `nrepl-dict-put`. - nested stack is used for decoded messages to avoid re-parsing of incomplete messages - queues are used for raw strings from server and for decoded requests
Diffstat (limited to 'cider-test.el')
-rw-r--r--cider-test.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/cider-test.el b/cider-test.el
index 47311601..5f9b9d65 100644
--- a/cider-test.el
+++ b/cider-test.el
@@ -267,7 +267,7 @@ With the actual value, the outermost '(not ...)' s-expression is removed."
"Emit into BUFFER report detail for the TEST assertion."
(with-current-buffer buffer
(nrepl-dbind-response test (var context type message expected actual error)
- (cider-propertize-region (cider--dict-to-plist test)
+ (cider-propertize-region (cdr test)
(cider-insert (capitalize type) (cider-test-type-face type) nil " in ")
(cider-insert var 'font-lock-function-name-face t)
(when context (cider-insert context 'font-lock-doc-face t))