Skip to content

Commit

Permalink
Fix an oversight in NativeCmdIntegrationTest.
Browse files Browse the repository at this point in the history
  • Loading branch information
nedtwigg committed Jan 6, 2025
1 parent 7dbf081 commit 99a32ff
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2024 DiffPlug
* Copyright 2024-2025 DiffPlug
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -51,8 +51,8 @@ class NativeCmdWithoutConfigCacheTest extends GradleIntegrationHarness implement
class NativeCmdWithConfigCacheTest extends GradleIntegrationHarness implements NativeCmdIntegrationTest {
@Override
public GradleRunner gradleRunner() throws IOException {
setFile("gradle.properties").toContent("org.gradle.unsafe.configuration-cache=true");
setFile("gradle.properties").toContent("org.gradle.configuration-cache=true");
setFile("gradle.properties").toLines("org.gradle.unsafe.configuration-cache=true",
"org.gradle.configuration-cache=true");
return super.gradleRunner().withGradleVersion(GradleVersionSupport.CONFIGURATION_CACHE.version);
}
}
Expand Down

0 comments on commit 99a32ff

Please sign in to comment.