diff options
| author | Andreas Politz <politza@hochschule-trier.de> | 2015-02-04 18:39:48 +0100 |
|---|---|---|
| committer | Andreas Politz <politza@hochschule-trier.de> | 2015-02-04 18:39:48 +0100 |
| commit | 637fdbcdb490bd1279b3b5f73dc81e8f3ee252bb (patch) | |
| tree | 5627b22c97324d0fe2055a652372f8226a673902 /test | |
| parent | b909013ab70375bd3258d26a9bcc810f7d57f796 (diff) | |
Fix undefined function usage.
* test/pdf-info.ert (pdf-info-pagelinks): caddr is a cl function, use
car + cddr instead.
Diffstat (limited to 'test')
| -rw-r--r-- | test/pdf-info.ert | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/pdf-info.ert b/test/pdf-info.ert index 52f0ab4..7b18cfe 100644 --- a/test/pdf-info.ert +++ b/test/pdf-info.ert @@ -66,7 +66,7 @@ (setq links (mapcar 'cdr links)) (should (equal (mapcar 'car links) '(goto-dest uri))) - (should (equal (mapcar 'caddr links) + (should (equal (mapcar 'car (mapcar 'cddr links)) '(1 "http://www.gnu.org")))))) (ert-deftest pdf-info-number-of-pages () |
