From: Glenn Morris Date: Sat, 10 Nov 2018 18:37:47 +0000 (-0800) Subject: * test/src/editfns-tests.el (test-group-name): Small fix. X-Git-Tag: emacs-27.0.90~4188 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=663613a1c096080837066ebb8c8b67e85d66d648;p=emacs.git * test/src/editfns-tests.el (test-group-name): Small fix. Do not assume user 1000 has group name = user name. --- diff --git a/test/src/editfns-tests.el b/test/src/editfns-tests.el index 7b6c990f350..6ce49fdc28b 100644 --- a/test/src/editfns-tests.el +++ b/test/src/editfns-tests.el @@ -359,7 +359,7 @@ (should-error (group-name 'foo))) (t (let ((list `((0 . "root") - (1000 . ,(user-login-name 1000)) +;;; (1000 . ,(user-login-name 1000)) (1212345 . nil)))) (dolist (test list) (should (equal (group-name (car test)) (cdr test)))))