1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
From 7914c3a78426bf18b7f6ec647ec93ce353e75ab2 Mon Sep 17 00:00:00 2001
From: Jason Blevins <jrblevin@sdf.org>
Date: Sat, 9 Jan 2016 18:21:18 -0500
Subject: [PATCH] Update test case in light of commit 4372f38
(cherry picked from commit facc168d6afc4a638e5682855065b21b9efe8474)
---
tests/markdown-test.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/markdown-test.el b/tests/markdown-test.el
index 11c5e08..3f64dc5 100644
--- a/tests/markdown-test.el
+++ b/tests/markdown-test.el
@@ -3237,7 +3237,7 @@ indented the same amount."
(ert-deftest test-markdown-ext/live-preview-exports ()
(markdown-test-temp-file "inline.text"
- (unless (featurep 'eww)
+ (unless (require 'eww nil t)
(should-error (markdown-live-preview-mode)))
(markdown-temp-eww
(markdown-live-preview-mode)
|