aboutsummaryrefslogtreecommitdiffstats
path: root/test/automated
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/automated
parent6c596cb2ea3075afab8812f45803683be2949323 (diff)
* fns-tests.el (fns-tests-nreverse): Update for changed string behavior.
Diffstat (limited to 'test/automated')
-rw-r--r--test/automated/fns-tests.el2
1 files changed, 1 insertions, 1 deletions
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 [])))