Skip to content

Commit

Permalink
Add error filter for tx validator errors (#526)
Browse files Browse the repository at this point in the history
  • Loading branch information
dehall authored Jul 5, 2024
1 parent a26e066 commit 4e93b79
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/onc_certification_g10_test_kit.rb
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ class G10CertificationSuite < Inferno::TestSuite
/\A\S+: \S+: The Coding provided \(\S*\) was not found in the value set/,
/\A\S+: \S+: A definition for CodeSystem '.*' could not be found, so the code cannot be validated/,
/\A\S+: \S+: URL value '.*' does not resolve/,
/\A\S+: \S+: .*\[No server available\]/ # Catch-all for certain errors when TX server is disabled
/\A\S+: \S+: .*\[No server available\]/, # Catch-all for certain errors when TX server is disabled
%r{\A\S+: \S+: .*\[Error from http://tx.fhir.org/r4:} # Catch-all for TX server errors that slip through
].freeze

def self.setup_validator(us_core_version_requirement) # rubocop:disable Metrics/CyclomaticComplexity
Expand Down

0 comments on commit 4e93b79

Please sign in to comment.