12 13 def findall(self, pattern): 14 with open(self.testdir + '/unit.log', 'r', errors='ignore') as f: 15 return re.findall(pattern, f.read()) 16 17 def test_python_application_variables(self): 18 self.load('variables') 19
--- 841 unchanged lines hidden --- | 12 13 def findall(self, pattern): 14 with open(self.testdir + '/unit.log', 'r', errors='ignore') as f: 15 return re.findall(pattern, f.read()) 16 17 def test_python_application_variables(self): 18 self.load('variables') 19
--- 841 unchanged lines hidden --- |