Skip to content

Commit

Permalink
Patch minor test issues (close #322)
Browse files Browse the repository at this point in the history
  • Loading branch information
colmsnowplow committed May 9, 2024
1 parent b72cd4a commit ed293a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion release_test/e2e_source_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ func TestE2ESources(t *testing.T) {
}

func getSliceFromInput(filepath string) []string {
inputData, err := os.ReadFile(inputFilePath)
inputData, err := os.ReadFile(filepath)
if err != nil {
panic(err)
}
Expand Down
2 changes: 1 addition & 1 deletion release_test/e2e_transform_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ func evaluateTestCasePK(t *testing.T, actual []byte, expectedFilePath string, te
sort.Strings(foundData)
sort.Strings(expectedData)

assert.Equal(expectedData, foundData)
assert.Equal(expectedData, foundData, testCase)
}

func getFileMountArg(testCase string) string {
Expand Down

0 comments on commit ed293a3

Please sign in to comment.