Skip to content

Commit

Permalink
fix: all_identifiers in a suite should include class identifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
ronaldtse committed Aug 16, 2024
1 parent 6e2b100 commit 5de2dbd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/modspec/suite.rb
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@ def self.instance

def all_identifiers
@all_identifiers ||= (normative_statements_classes.flat_map(&:normative_statements) +
conformance_classes.flat_map(&:tests)).map(&:identifier)
conformance_classes.flat_map(&:tests) +
normative_statements_classes +
conformance_classes).map(&:identifier)
end

def resolve_conflicts(other_suite)
Expand Down

0 comments on commit 5de2dbd

Please sign in to comment.