From ea58796756f84a7c735d07598d785a365210f327 Mon Sep 17 00:00:00 2001
From: Hung Lun <hunglun.o@gmail.com>
Date: Tue, 13 Jun 2017 21:21:16 +0800
Subject: [PATCH] test-org-colview.el: Fix an expected result in
 test-org-colview/columns-summary

* lisp/test-org-colview.el (test-org-colview/columns-summary): Fix 23rd test case

This test sets 2014-03-04 to be current-time and then compute the
number of days between current-time and 2012-03-29. 705 days should be
expected. However, 705d 1h is given in the test case.

Modified from a patch proposal by O Hung Lun.

TINYCHANGE
---
 testing/lisp/test-org-colview.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/testing/lisp/test-org-colview.el b/testing/lisp/test-org-colview.el
index f816e7b75..65f154530 100644
--- a/testing/lisp/test-org-colview.el
+++ b/testing/lisp/test-org-colview.el
@@ -528,7 +528,7 @@
 	(get-char-property (point) 'org-columns-value-modified)))))
   (should
    (equal
-    "705d 1h"
+    "705d"
     (cl-letf (((symbol-function 'current-time)
 	       (lambda ()
 		 (apply #'encode-time
-- 
2.12.2

