From a0d37dc35f08b70382bbe7f376b3025a69094fd2 Mon Sep 17 00:00:00 2001 From: Carlo Sciolla Date: Tue, 21 May 2019 17:34:43 +0200 Subject: [PATCH] Maybe this one fixes the test? --- test/test-helper.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/test-helper.el b/test/test-helper.el index bbba7b4..066b5fd 100644 --- a/test/test-helper.el +++ b/test/test-helper.el @@ -53,15 +53,15 @@ Finally, the indented text in the buffer will be compared with AFTER." (with-temp-buffer ;; fix the JAR location prior to mode initialization ;; for some reason, plantuml-mode disregards the setq-local - (setq-local plantuml-jar-path plantuml-test-jar-path) + (setq plantuml-jar-path plantuml-test-jar-path) (plantuml-init-once) (insert before) (goto-char (point-min)) (plantuml-mode) ;; use 2 spaces instead of one tab for indentation - (setq-local indent-tabs-mode nil) - (setq-local tab-width 2) + (setq indent-tabs-mode nil) + (setq tab-width 2) (indent-region (point-min) (point-max)) (should (equal (buffer-string) after))))