aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/src/alloc-tests.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/src/alloc-tests.el b/test/src/alloc-tests.el
index 8b4ef8ce7d2..1cf1fc3be5c 100644
--- a/test/src/alloc-tests.el
+++ b/test/src/alloc-tests.el
@@ -47,7 +47,7 @@
47 47
48(ert-deftest record-3 () 48(ert-deftest record-3 ()
49 (let* ((x (record 'foo 1 2 3)) 49 (let* ((x (record 'foo 1 2 3))
50 (y (copy-record x))) 50 (y (copy-sequence x)))
51 (should-not (eq x y)) 51 (should-not (eq x y))
52 (dotimes (i 4) 52 (dotimes (i 4)
53 (should (eql (aref x i) (aref y i)))))) 53 (should (eql (aref x i) (aref y i))))))