@@ -285,7 +285,7 @@ def _create_leaf(
285285
286286 :param leaf_type: the leaf type
287287 :param parent_item: parent pytest.Item of the current leaf
288- :param item: leaf's pytest.Item
288+ :param item: the leaf's pytest.Item
289289 :return: a leaf
290290 """
291291 return {
@@ -1126,7 +1126,8 @@ def start_bdd_scenario(self, feature: Feature, scenario: Scenario) -> None:
11261126 root_leaf = self ._bdd_tree
11271127 if not root_leaf :
11281128 self ._bdd_tree = root_leaf = self ._create_leaf (LeafType .ROOT , None , None , item_id = self .parent_item_id )
1129- children_leafs = root_leaf ["children" ]
1129+ # noinspection PyTypeChecker
1130+ children_leafs : Dict [Any , Any ] = root_leaf ["children" ]
11301131 if feature in children_leafs :
11311132 feature_leaf = children_leafs [feature ]
11321133 else :
@@ -1392,7 +1393,7 @@ def start(self) -> None:
13921393 retries = self ._config .rp_api_retries ,
13931394 verify_ssl = self ._config .rp_verify_ssl ,
13941395 launch_uuid = launch_id ,
1395- log_batch_payload_size = self ._config .rp_log_batch_payload_size ,
1396+ log_batch_payload_limit = self ._config .rp_log_batch_payload_limit ,
13961397 launch_uuid_print = self ._config .rp_launch_uuid_print ,
13971398 print_output = self ._config .rp_launch_uuid_print_output ,
13981399 http_timeout = self ._config .rp_http_timeout ,
0 commit comments