File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -41,12 +41,12 @@ def cases(self):
4141class ProtocolTestSuiteParser :
4242 def __init__ (self , case_path ):
4343 self .case_name = os .path .basename (case_path )
44- self .request_attributes = self .request_attributes (case_path )
44+ self .request_attributes = self .build_request_attributes (case_path )
4545 self .sts = self .read_file_by_extension (case_path , "sts" )
4646 self .sig = self .read_file_by_extension (case_path , "sig" )
4747 self .auth_headers = self .read_json_by_extension (case_path , "authz" )
4848
49- def request_attributes (self , case_path ):
49+ def build_request_attributes (self , case_path ):
5050 req = self .read_json_by_extension (case_path , "req" )
5151 body_file_path = os .path .join (case_path , req ["body_filepath" ]) if "body_filepath" in req else ""
5252 body = self .read_file (body_file_path , "rb" ) if body_file_path else req .get ("body" )
You can’t perform that action at this time.
0 commit comments