diff -r 197d10e157ce -r 7625b4f7db70 tests/test-glog.t --- a/tests/test-glog.t Fri Feb 02 13:13:46 2018 -0800 +++ b/tests/test-glog.t Sun Jan 21 12:26:42 2018 +0900 @@ -87,16 +87,17 @@ > cmdutil, > commands, > extensions, + > logcmdutil, > revsetlang, > smartset, > ) > > def logrevset(repo, pats, opts): - > revs = cmdutil._logrevs(repo, opts) + > revs = logcmdutil._logrevs(repo, opts) > if not revs: > return None - > match, pats, slowpath = cmdutil._makelogmatcher(repo, revs, pats, opts) - > return cmdutil._makelogrevset(repo, match, pats, slowpath, opts) + > match, pats, slowpath = logcmdutil._makelogmatcher(repo, revs, pats, opts) + > return logcmdutil._makelogrevset(repo, match, pats, slowpath, opts) > > def uisetup(ui): > def printrevset(orig, repo, pats, opts):