File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 44import subprocess
55import shutil
66import six
7- from testgres import get_new_node , clean_all
7+ import testgres
88import hashlib
99import re
1010import pwd
@@ -153,7 +153,7 @@ def make_simple_node(
153153 real_base_dir = os .path .join (self .tmp_path , base_dir )
154154 shutil .rmtree (real_base_dir , ignore_errors = True )
155155
156- node = get_new_node ('test' , base_dir = real_base_dir )
156+ node = testgres . get_new_node ('test' , base_dir = real_base_dir )
157157 node .init (initdb_params = initdb_params )
158158
159159 # Sane default parameters, not a shit with fsync = off from testgres
@@ -585,7 +585,7 @@ def get_username(self):
585585 def del_test_dir (self , module_name , fname ):
586586 """ Del testdir and optimistically try to del module dir"""
587587 try :
588- clean_all ()
588+ testgres . clean_all ()
589589 except :
590590 pass
591591
You can’t perform that action at this time.
0 commit comments