Deleted Added
1import re
2import socket
3import time
4
5import pytest
6
7from conftest import run_process
8from conftest import skip_alert
9from conftest import waitforsocket
10from unit.applications.lang.python import TestApplicationPython
11from unit.option import option
12
13
14class TestProxy(TestApplicationPython):
15 prerequisites = {'modules': {'python': 'any'}}
16
17 SERVER_PORT = 7999
18
19 @staticmethod

--- 493 unchanged lines hidden ---