RedHatQE / pylero

Python wrapper for the Polarion WSDL API
https://redhatqe.github.io/pylero/
MIT License
38 stars 25 forks source link

Fixing issue #159 #163

Closed emesika closed 8 months ago

emesika commented 11 months ago

Wrong code in get_defined_custom_field_type and get_defined_custom_field_types

get_defined_custom_field_type:

 self._uri, work_item_type_id, key
 should be :
 self.project_id, work_item_type_id, key)

get_defined_custom_field_types:

 self._uri, work_item_type_id
 should be:
 self.project_id, work_item_type_id
leelavg commented 8 months ago

merging based on

   <element name="getDefinedCustomFieldType">
    <complexType>
     <sequence>
      <element name="projectID" type="xsd:string"/>
      <element name="typeID" type="xsd:string"/>
      <element name="key" type="xsd:string"/>
     </sequence>
    </complexType>
   </element>

<!--------------------->

   <element name="getDefinedCustomFieldTypes">
    <complexType>
     <sequence>
      <element name="projectID" type="xsd:string"/>
      <element name="typeID" type="xsd:string"/>
     </sequence>
    </complexType>
   </element>