@@ -140,22 +140,22 @@ def assert_valid_bundle(
140
140
bp_plan_id = 0
141
141
142
142
method_name_of_program = {e .name for e in program .execution_plan }
143
- method_name_of_test_suites = {
143
+ method_name_of_bundled_config = {
144
144
t .method_name for t in bundled_config .execution_plan_tests
145
145
}
146
146
147
- assert method_name_of_test_suites .issubset (
147
+ assert method_name_of_bundled_config .issubset (
148
148
method_name_of_program
149
- ), f"All methods in method_test_suites should be found in program.execution_plan, \
150
- but { str (method_name_of_test_suites - method_name_of_program )} does not include."
149
+ ), f"All method names in bundled config should be found in program.execution_plan, \
150
+ but { str (method_name_of_bundled_config - method_name_of_program )} does not include."
151
151
152
- # check if method_tesdt_suites has been sorted in ascending alphabetical order of method name.
152
+ # check if has been sorted in ascending alphabetical order of method name.
153
153
for bp_plan_id in range (1 , len (bundled_config .execution_plan_tests )):
154
154
assert (
155
155
bundled_config .execution_plan_tests [bp_plan_id - 1 ].method_name
156
156
<= bundled_config .execution_plan_tests [bp_plan_id ].method_name
157
- ), f"The method name of test suite should be sorted in ascending alphabetical \
158
- order of method name, but { bp_plan_id - 1 } -th and { bp_plan_id } -th method_test_suite aren't."
157
+ ), f"The method name of BundledConfig should be sorted in ascending alphabetical \
158
+ order of method name, but { bp_plan_id - 1 } -th and { bp_plan_id } -th methods aren't."
159
159
160
160
# Check if the inputs' type meet Program's requirement
161
161
while bp_plan_id < len (bundled_config .execution_plan_tests ):
0 commit comments