Skip to content

Commit

Permalink
Merge pull request #32 from halprin/offical-test-unique-names
Browse files Browse the repository at this point in the history
Make official test names more unique
  • Loading branch information
halprin authored May 6, 2024
2 parents 4a1bf48 + 70d371f commit 6e692e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion official_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func TestOfficial(t *testing.T) {

for _, group := range officialTests.Groups {
for _, test := range group.Tests {
testName := fmt.Sprintf("%s/%s", group.Name, test.Name)
testName := fmt.Sprintf("%s/%s/%s/%s", group.Name, test.Name, test.InputFile, test.Expression.Expression)
totalTests++
fhir, err := readFhirTestFile(convertXmlFileNameToJsonFileName(test.InputFile))
assert.NoError(t, err)
Expand Down

0 comments on commit 6e692e2

Please sign in to comment.