Commit e28a243f authored by Benjamin Blanc's avatar Benjamin Blanc

testnode: Fix unused 'my_test_type' var

parent 6a2fe68a
...@@ -189,7 +189,7 @@ branch = %(branch)s ...@@ -189,7 +189,7 @@ branch = %(branch)s
custom_profile.close() custom_profile.close()
sys.path.append(repository_path) sys.path.append(repository_path)
def getAndUpdateFullRevisionList(self, node_test_suite, my_test_type): def getAndUpdateFullRevisionList(self, node_test_suite):
full_revision_list = [] full_revision_list = []
config = self.config config = self.config
log = self.log log = self.log
...@@ -370,7 +370,7 @@ from the distributor.") ...@@ -370,7 +370,7 @@ from the distributor.")
run_software = True run_software = True
# kill processes from previous loop if any # kill processes from previous loop if any
self.process_manager.killPreviousRun() self.process_manager.killPreviousRun()
self.getAndUpdateFullRevisionList(node_test_suite, my_test_type) self.getAndUpdateFullRevisionList(node_test_suite)
# Write our own software.cfg to use the local repository # Write our own software.cfg to use the local repository
self.constructProfile(node_test_suite, my_test_type, runner.getRelativePathUsage()) self.constructProfile(node_test_suite, my_test_type, runner.getRelativePathUsage())
# Make sure we have local repository # Make sure we have local repository
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment