Skip to content

Commit

Permalink
Capitalise the Folder
Browse files Browse the repository at this point in the history
As it's a `Folder` object we're referencing, so this makes it a bit
clearer.
  • Loading branch information
jamietanna committed Jul 1, 2022
1 parent 4639256 commit 9cf8a38
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -641,7 +641,7 @@ class JenkinsJobManagementSpec extends Specification {
e.message == 'Type of item "my-job" does not match existing type, item type can not be changed'
}
def 'createOrUpdateConfig should preserve credentials if they exist on a folder'() {
def 'createOrUpdateConfig should preserve credentials if they exist on a Folder'() {
setup:
Folder folder = jenkinsRule.createProject(Folder, 'folder')
folder.addProperty(createCredentialProperty())
Expand All @@ -654,7 +654,7 @@ class JenkinsJobManagementSpec extends Specification {
actual.properties.size() == 1
}
def 'createOrUpdateConfig should ignore other properties on the folder'() {
def 'createOrUpdateConfig should ignore other properties on the Folder'() {
setup:
Folder folder = jenkinsRule.createProject(Folder, 'folder')
folder.addProperty(new FakeProperty())
Expand Down

0 comments on commit 9cf8a38

Please sign in to comment.