Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
modmuss50 committed Jan 3, 2025
1 parent 67ce93b commit 7d28cba
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,9 @@ class RunConfigTest extends Specification implements GradleProjectTestTrait {
'''
// Copy tracy into the project
new File(gradle.projectDir, "tracy-capture").bytes = tracyCapture.bytes
def projectTracyCapture = new File(gradle.projectDir, "tracy-capture")
projectTracyCapture.bytes = tracyCapture.bytes
projectTracyCapture.setExecutable(true)
when:
def result = gradle.run(task: "prodClient")
Expand Down

0 comments on commit 7d28cba

Please sign in to comment.