tests/test-extension.t
changeset 30771 c2cbc1b050db
parent 30610 66cffa87d2f2
child 30993 9c2977ceaa46
--- a/tests/test-extension.t	Wed Jan 11 22:46:07 2017 -0800
+++ b/tests/test-extension.t	Wed Jan 11 23:13:00 2017 -0800
@@ -731,14 +731,14 @@
   $ echo "multirevs = multirevs.py" >> $HGRCPATH
 
   $ hg help multirevs | tail
+        bookmark (this works because the last revision of the revset is used):
   
-      - Changesets committed in May 2008, sorted by user:
+          hg update :@
   
-          hg log -r "sort(date('May 2008'), user)"
+      - Show diff between tags 1.3 and 1.5 (this works because the first and the
+        last revisions of the revset are used):
   
-      - Changesets mentioning "bug" or "issue" that are not in a tagged release:
-  
-          hg log -r "(keyword(bug) or keyword(issue)) and not ancestors(tag())"
+          hg diff -r 1.3::1.5
   
   use 'hg help -c multirevs' to see help for the multirevs command