##// END OF EJS Templates
Rename two tests that had identical names to distinguish them....
Fernando Perez -
Show More
@@ -128,8 +128,9 class IEngineCoreTestCase(object):
128 return d
128 return d
129
129
130 @parametric
130 @parametric
131 def testExecuteFailures(cls):
131 def testExecuteFailuresEngineService(cls):
132 return [(cls.runTestExecuteFailures, cmd, exc) for cmd, exc in invalidCommands]
132 return [(cls.runTestExecuteFailures, cmd, exc)
133 for cmd, exc in invalidCommands]
133
134
134 def runTestPushPull(self, o):
135 def runTestPushPull(self, o):
135 d = self.engine.push(dict(a=o))
136 d = self.engine.push(dict(a=o))
@@ -187,7 +187,7 class IMultiEngineTestCase(IMultiEngineBaseTestCase):
187 return d
187 return d
188
188
189 @parametric
189 @parametric
190 def testExecuteFailures(cls):
190 def testExecuteFailuresMultiEng(cls):
191 return [(cls.runExecuteFailures,cmd,exc) for
191 return [(cls.runExecuteFailures,cmd,exc) for
192 cmd,exc in invalidCommands]
192 cmd,exc in invalidCommands]
193
193
General Comments 0
You need to be logged in to leave comments. Login now