summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorProtesilaos Stavrou <info@protesilaos.com>2026-04-10 16:26:12 +0300
committerProtesilaos Stavrou <info@protesilaos.com>2026-04-10 16:26:12 +0300
commit8a8ed85ae7ffd0ada0cbb25797faaf5472e52f9f (patch)
tree66364cadc481e82254c47bcfb548d259073ec958
parentd2f64a8a4fa0e6e7a34dc5044cdd6e76b8c888d4 (diff)
Make stylistic change to the test of modus-themes-sort
-rw-r--r--tests/modus-themes-test.el12
1 files changed, 2 insertions, 10 deletions
diff --git a/tests/modus-themes-test.el b/tests/modus-themes-test.el
index 34912a9..71faab5 100644
--- a/tests/modus-themes-test.el
+++ b/tests/modus-themes-test.el
@@ -133,16 +133,8 @@ Also see `modus-themes-test--modus-themes--hex-to-rgb'."
(when-let* ((first (car themes))
(name (symbol-name first)))
(string-match-p prefix name)))))
- (should
- (funcall
- first-has-prefix-fn
- (modus-themes-sort (reverse modus-themes-items) 'light)
- "modus-operandi"))
- (should
- (funcall
- first-has-prefix-fn
- (modus-themes-sort modus-themes-items 'dark)
- "modus-vivendi"))))
+ (should (funcall first-has-prefix-fn (modus-themes-sort (reverse modus-themes-items) 'light) "modus-operandi"))
+ (should (funcall first-has-prefix-fn (modus-themes-sort modus-themes-items 'dark) "modus-vivendi"))))
(mtt-define-test inheritance
"Ensure all faces inherit from valid faces."