mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-10 06:16:32 +00:00
11 lines
145 B
Python
11 lines
145 B
Python
class TestData:
|
|
|
|
def __init__(self):
|
|
|
|
self.test_name = None
|
|
self.steps = []
|
|
self.error = []
|
|
|
|
|
|
test_data = TestData()
|