##// END OF EJS Templates
test-filelog: alias ui as uimod
Yuya Nishihara -
r28805:efc73955 default
parent child Browse files
Show More
@@ -5,14 +5,14 b' Tests the behavior of filelog w.r.t. dat'
5 from __future__ import absolute_import, print_function
5 from __future__ import absolute_import, print_function
6 from mercurial import (
6 from mercurial import (
7 hg,
7 hg,
8 ui,
8 ui as uimod,
9 )
9 )
10 from mercurial.node import (
10 from mercurial.node import (
11 hex,
11 hex,
12 nullid,
12 nullid,
13 )
13 )
14
14
15 myui = ui.ui()
15 myui = uimod.ui()
16 repo = hg.repository(myui, path='.', create=True)
16 repo = hg.repository(myui, path='.', create=True)
17
17
18 fl = repo.file('foobar')
18 fl = repo.file('foobar')
General Comments 0
You need to be logged in to leave comments. Login now