; Adjust time-convert call to recent change

* test/lisp/eshell/em-pred-tests.el
(eshell-parse-file-name-attributes): Adjust test to recent change.
This commit is contained in:
Stefan Kangas 2022-08-06 13:03:38 +02:00
parent 3c4526028c
commit 5ab557be62

View file

@ -75,7 +75,7 @@ The following attributes are recognized:
(`(,(and (or "links" "uid" "gid" "size") key) ,value)
(cons (intern key) (string-to-number value)))
(`(,(and (or "atime" "mtime" "ctime") key) ,value)
(cons (intern key) (time-convert (string-to-number value))))
(cons (intern key) (time-convert (string-to-number value) nil)))
(`(,key ,value)
(cons (intern key) value))
(_ (error "invalid format %S" i))))