Tests: get rid of classes in test files.
Class usage came from the unittest framework and it was always redundant after migration to the pytest. This commit removes classes from files containing tests to make them more readable and understandable.
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
import json
|
||||
|
||||
from unit.http import TestHTTP
|
||||
from unit.http import HTTP1
|
||||
from unit.option import option
|
||||
|
||||
http = TestHTTP()
|
||||
http = HTTP1()
|
||||
|
||||
|
||||
def check_unix_abstract():
|
||||
|
||||
Reference in New Issue
Block a user