aboutsummaryrefslogtreecommitdiffstats
path: root/test/src
diff options
context:
space:
mode:
Diffstat (limited to 'test/src')
-rw-r--r--test/src/comp-test-funcs.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/src/comp-test-funcs.el b/test/src/comp-test-funcs.el
index 168819b17d6..2fe6276227a 100644
--- a/test/src/comp-test-funcs.el
+++ b/test/src/comp-test-funcs.el
@@ -66,7 +66,7 @@
66 (length '(1 2 3))) 66 (length '(1 2 3)))
67 67
68(defun comp-tests-aref-aset-f () 68(defun comp-tests-aref-aset-f ()
69 (let ((vec [1 2 3])) 69 (let ((vec (make-vector 3 0)))
70 (aset vec 2 100) 70 (aset vec 2 100)
71 (aref vec 2))) 71 (aref vec 2)))
72 72