Skip to content

Commit

Permalink
Make test cross-OS safe
Browse files Browse the repository at this point in the history
  • Loading branch information
Vampire committed Feb 19, 2024
1 parent af4bf46 commit 63ae582
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class ReleasePluginTests extends Specification {
project = ProjectBuilder.builder().withName('ReleasePluginTest').withProjectDir(testDir).build()
def testVersionPropertyFile = project.file('version.properties')
testVersionPropertyFile.withWriter { w ->
w.writeLine 'version=1.2'
w.write 'version=1.2\n'
}
project.plugins.apply(BasePlugin.class)
ReleasePlugin releasePlugin = project.plugins.apply(ReleasePlugin.class)
Expand Down

0 comments on commit 63ae582

Please sign in to comment.