Skip to content

Commit

Permalink
take qualifiers into account when grouping assets into TestCases
Browse files Browse the repository at this point in the history
  • Loading branch information
sierra-moxon committed Apr 25, 2024
1 parent 84eb440 commit fe17787
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def create_test_cases_from_test_assets(test_assets, test_case_model):
grouped_assets = {}
for test_asset in test_assets:
qualifier_key = ""
if test_asset.qualifers and test_asset.qualifiers is not None:
if test_asset.qualifiers and test_asset.qualifiers is not None:
for qualifier in test_asset.qualifiers:
qualifier_key = qualifier_key+qualifier.value
key = (test_asset.input_id, test_asset.predicate_name, qualifier_key)
Expand Down

0 comments on commit fe17787

Please sign in to comment.