Skip to content

Commit

Permalink
Merge pull request #72 from testit-tms/hotfix/fix_export_required_att…
Browse files Browse the repository at this point in the history
…ributes_with_shared_steps

Fixed the export of required attributes with shared steps for QaseExporter.
  • Loading branch information
PavelButuzov authored Sep 6, 2024
2 parents 232966d + 2751f95 commit 39bfaf4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions Migrators/Importer/Client/Client.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Logging;
using Models;
using System;
using System.Xml.Linq;
using TestIT.ApiClient.Api;
using TestIT.ApiClient.Client;
using TestIT.ApiClient.Model;
Expand Down
4 changes: 2 additions & 2 deletions Migrators/QaseExporter/Services/AttributeService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public async Task<AttributeData> ConvertAttributes()
Id = Guid.NewGuid(),
Name = customField.Title,
Type = ConvertCustomAttributeType(customField.Type),
IsRequired = customField.Required,
IsRequired = false,
IsActive = true,
Options = new List<string>(),
};
Expand Down Expand Up @@ -72,7 +72,7 @@ public async Task<AttributeData> ConvertAttributes()
Id = Guid.NewGuid(),
Name = systemField.Title,
Type = ConvertSystemAttributeType(systemField.Type),
IsRequired = systemField.Required,
IsRequired = false,
IsActive = true,
Options = new List<string>(),
};
Expand Down

0 comments on commit 39bfaf4

Please sign in to comment.