Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing issue #159 #163

Merged
merged 1 commit into from
Feb 16, 2024
Merged

Fixing issue #159 #163

merged 1 commit into from
Feb 16, 2024

Conversation

emesika
Copy link
Contributor

@emesika emesika commented Dec 4, 2023

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

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

Signed-off-by: Eli Mesika <[email protected]>
@leelavg
Copy link
Collaborator

leelavg commented Feb 16, 2024

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>

@leelavg leelavg merged commit 45f5aad into RedHatQE:main Feb 16, 2024
7 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants