From 8025fdbbea6eaaa3e1290864fe2dc48e2201df48 Mon Sep 17 00:00:00 2001 From: Artur Malabarba Date: Fri, 6 Nov 2015 15:53:23 +0000 Subject: [PATCH] * test/automated/subr-tests.el (subr-test-when): Fix again --- test/automated/subr-tests.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/automated/subr-tests.el b/test/automated/subr-tests.el index e782f7b1ee1..ee8db593b49 100644 --- a/test/automated/subr-tests.el +++ b/test/automated/subr-tests.el @@ -96,7 +96,7 @@ (setq x (1+ x)) x)) (should (= x 1)) - (should (= 2 (when true + (should (= 2 (when t (setq x (1+ x)) x))) (should (= x 2)))