diff options
Diffstat (limited to 'test-suite/tests/strings.test')
-rw-r--r-- | test-suite/tests/strings.test | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test-suite/tests/strings.test b/test-suite/tests/strings.test index 679e17326..56c898c8b 100644 --- a/test-suite/tests/strings.test +++ b/test-suite/tests/strings.test @@ -2,7 +2,7 @@ ;;;; Jim Blandy <jimb@red-bean.com> --- August 1999 ;;;; ;;;; Copyright (C) 1999, 2001, 2004, 2005, 2006, 2008, 2009, 2010, -;;;; 2011 Free Software Foundation, Inc. +;;;; 2011, 2013 Free Software Foundation, Inc. ;;;; ;;;; This library is free software; you can redistribute it and/or ;;;; modify it under the terms of the GNU Lesser General Public @@ -546,10 +546,10 @@ (with-test-prefix "string" (pass-if-exception "convert circular list to string" - exception:wrong-type-arg - (let ((foo (list #\a #\b #\c))) - (set-cdr! (cddr foo) (cdr foo)) - (apply string foo)))) + '(wrong-type-arg . "Apply to non-list") + (let ((foo (list #\a #\b #\c))) + (set-cdr! (cddr foo) (cdr foo)) + (apply string foo)))) (with-test-prefix "string-split" |