diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-01-26 14:53:09 -0200 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-01-26 14:53:09 -0200 |
commit | b413d048be63e2981e1d1069d86c83de0ed1ef87 (patch) | |
tree | c0d2e8a9e2c50b38efa6f98ef44f4700a8ebcaab /test | |
parent | a359f7cca7751372437b853fc648081acffc5b63 (diff) | |
parent | ed319f4c196866685ed75c3eca3edaead3173bfe (diff) |
Merge branch 'images' into handle-html-tags
Diffstat (limited to 'test')
-rw-r--r-- | test/test-printing.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/test-printing.el b/test/test-printing.el index 52fe5be..a6815e2 100644 --- a/test/test-printing.el +++ b/test/test-printing.el @@ -13,7 +13,7 @@ (defmacro question-list-regex (title votes answers &rest tags) "Construct a matching regexp for TITLE, VOTES, and ANSWERS. Each element of TAGS is appended at the end of the expression -after being run through `sx-question--tag-format'." +after being run through `sx-tag--format'." `(rx line-start (+ whitespace) ,(number-to-string votes) (+ whitespace) ,(number-to-string answers) @@ -22,8 +22,7 @@ after being run through `sx-question--tag-format'." (+ (any whitespace digit)) (or "y" "d" "h" "m" "mo" "s") " ago" (+ whitespace) - (eval (mapconcat #'sx-question--tag-format - (list ,@tags) " ")))) + (eval (mapconcat #'sx-tag--format (list ,@tags) " ")))) ;;; Tests |