diff options
-rw-r--r-- | test/unit/applications/proto.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/applications/proto.py b/test/unit/applications/proto.py index 17dfed35..16007757 100644 --- a/test/unit/applications/proto.py +++ b/test/unit/applications/proto.py @@ -10,6 +10,6 @@ class TestApplicationProto(TestControl): def date_to_sec_epoch(self, date, template='%a, %d %b %Y %H:%M:%S %Z'): return time.mktime(time.strptime(date, template)) - def search_in_log(self, pattern): - with open(self.testdir + '/unit.log', 'r', errors='ignore') as f: + def search_in_log(self, pattern, name='unit.log'): + with open(self.testdir + '/' + name, 'r', errors='ignore') as f: return re.search(pattern, f.read()) |