aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorGlenn Morris <[email protected]>2014-05-21 21:09:51 -0400
committerGlenn Morris <[email protected]>2014-05-21 21:09:51 -0400
commita7517f0fdec7aa1172f9bb41a9d61cf1b02b286d (patch)
tree8e7bb0bd4646a756d8451c9c748dd0e0946f53d5 /test
parent6c596cb2ea3075afab8812f45803683be2949323 (diff)
* fns-tests.el (fns-tests-nreverse): Update for changed string behavior.
Diffstat (limited to 'test')
-rw-r--r--test/ChangeLog5
-rw-r--r--test/automated/fns-tests.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/test/ChangeLog b/test/ChangeLog
index 3fed9759ca..d575635048 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,3 +1,8 @@
+2014-05-22 Glenn Morris <[email protected]>
+
+ * automated/fns-tests.el (fns-tests-nreverse):
+ Update for changed string behavior.
+
2014-05-15 Dmitry Antipov <[email protected]>
* automated/fns-tests.el: New file.
diff --git a/test/automated/fns-tests.el b/test/automated/fns-tests.el
index 577298cddf..21a9e4536a 100644
--- a/test/automated/fns-tests.el
+++ b/test/automated/fns-tests.el
@@ -39,7 +39,7 @@
(should-error (nreverse))
(should-error (nreverse 1))
(should-error (nreverse (make-char-table 'foo)))
- (should-error (nreverse "xyzzy"))
+ (should (equal (nreverse "xyzzy") "yzzyx"))
(let ((A []))
(nreverse A)
(should (equal A [])))