File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -127,7 +127,7 @@ def patch_system_under_test(
127
127
@classmethod
128
128
def revert_system_under_test(
129
129
cls,
130
- teardown_context: DistributedTeardownContext)
130
+ teardown_context: DistributedTeardownContext):
131
131
# Fetch state from `teardown_context.client_dir` and revert
132
132
# changes made by `patch_system_under_test()`.
133
133
Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ def patch_system_under_test(
137
137
@classmethod
138
138
def revert_system_under_test(
139
139
cls,
140
- teardown_context: DistributedTeardownContext)
140
+ teardown_context: DistributedTeardownContext):
141
141
# Fetch state from `teardown_context.client_dir` and revert
142
142
# changes made by `patch_system_under_test()`.
143
143
Original file line number Diff line number Diff line change @@ -1250,13 +1250,15 @@ def patch_system_under_test(
1250
1250
setup_context: DistributedSetupContext) -> None:
1251
1251
# Initialize the System Under Test for all the test cases in
1252
1252
# this test class and store state in `setup_context.client_dir`.
1253
-
1253
+ pass
1254
+
1254
1255
@classmethod
1255
1256
def revert_system_under_test(
1256
1257
cls,
1257
- teardown_context: DistributedTeardownContext)
1258
+ teardown_context: DistributedTeardownContext):
1258
1259
# Fetch state from `teardown_context.client_dir` and revert
1259
1260
# changes made by `patch_system_under_test()`.
1261
+ pass
1260
1262
1261
1263
@pytest.mark.parametrize('i', range(5))
1262
1264
def test(self, i):
You can’t perform that action at this time.
0 commit comments