Skip to content

Commit

Permalink
fix: fix variable shadowing
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Climent committed Oct 25, 2023
1 parent 29c8564 commit 500201d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/build/tests/tracing/tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ testMatrixBaggageFile.forEach((testCase) => {
// We only want to write the file if it's a non-empty string '', while we still want to test scenario
let filePath = input.baggageFilePath
if (input.baggageFilePath.length > 0) {
const filePath = `${baggagePath}/${input.baggageFilePath}`
filePath = `${baggagePath}/${input.baggageFilePath}`
await writeFile(filePath, input.baggageFileContent)
}

Expand Down

0 comments on commit 500201d

Please sign in to comment.