aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorSean Allred <code@seanallred.com>2015-01-01 17:07:38 -0500
committerSean Allred <code@seanallred.com>2015-01-01 17:07:38 -0500
commitb4ac5e67f55147db98e17f9e2df8d7e044b6bcdf (patch)
treef159b764dc4bfae888f0cd5f539cd73906ddddd6 /test
parent7d73bc8b9da4a093b0a3b477da81252d5b805ca5 (diff)
Remove redundant consing
Diffstat (limited to 'test')
-rw-r--r--test/tests.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tests.el b/test/tests.el
index d709600..53e053f 100644
--- a/test/tests.el
+++ b/test/tests.el
@@ -55,7 +55,7 @@
(defun sx-test-message (message &rest args)
(when sx-test-enable-messages
- (apply #'message (cons message args))))
+ (apply #'message message args)))
(mapc #'sx-load-test
'(api macros printing util))