diff options
author | Andrey Zelenkov <zelenkov@nginx.com> | 2018-08-06 19:40:37 +0300 |
---|---|---|
committer | Andrey Zelenkov <zelenkov@nginx.com> | 2018-08-06 19:40:37 +0300 |
commit | 09268676ef9f80291c554431b15495afd63177af (patch) | |
tree | 9b68f99028efe90db1fbd3d57dc256ebce48549b /test | |
parent | b021188e95380c77248d38be4aa74c1877e51683 (diff) | |
download | unit-09268676ef9f80291c554431b15495afd63177af.tar.gz unit-09268676ef9f80291c554431b15495afd63177af.tar.bz2 |
Tests: remove unused function.
This function was accidentally added in e0f0cd7d244a.
Diffstat (limited to 'test')
-rw-r--r-- | test/unit.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/test/unit.py b/test/unit.py index ae6154aa..9e962b04 100644 --- a/test/unit.py +++ b/test/unit.py @@ -2,7 +2,6 @@ import os import re import sys import json -import mmap import time import shutil import socket @@ -367,11 +366,6 @@ class TestUnitApplicationProto(TestUnitControl): with open(self.testdir + '/unit.log', 'r', errors='ignore') as f: return re.search(pattern, f.read()) - def find_in_log(self, pattern): - with open(self.testdir + '/unit.log', 'rb', 0) as f, \ - mmap.mmap(f.fileno(), 0, access=mmap.ACCESS_READ) as s: - return s.find(pattern) != -1 - class TestUnitApplicationPython(TestUnitApplicationProto): def load(self, script, name=None): if name is None: |