diff -r b0014780c7fc -r 572f36e9a780 tests/test-glog.t --- a/tests/test-glog.t Sun Jan 21 12:36:43 2018 +0900 +++ b/tests/test-glog.t Sun Jan 21 12:48:39 2018 +0900 @@ -93,11 +93,11 @@ > ) > > def logrevset(repo, pats, opts): - > revs = logcmdutil._logrevs(repo, opts) + > revs = logcmdutil._initialrevs(repo, opts) > if not revs: > return None - > match, pats, slowpath = logcmdutil._makelogmatcher(repo, revs, pats, opts) - > return logcmdutil._makelogrevset(repo, match, pats, slowpath, opts) + > match, pats, slowpath = logcmdutil._makematcher(repo, revs, pats, opts) + > return logcmdutil._makerevset(repo, match, pats, slowpath, opts) > > def uisetup(ui): > def printrevset(orig, repo, pats, opts):