Skip to content

Commit

Permalink
Make official test names more unique
Browse files Browse the repository at this point in the history
  • Loading branch information
halprin committed May 6, 2024
1 parent 4a1bf48 commit 70d371f
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 70d371f

Please sign in to comment.