Skip to content

Commit

Permalink
Remove unnecessary escaping
Browse files Browse the repository at this point in the history
  • Loading branch information
basil committed Sep 6, 2024
1 parent c8cdad4 commit 91c5c21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/plugins/CredentialsBindingTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ private void testPersonalCredentials(

final WorkflowJob job = PipelineTestUtils.createPipelineJobWithScript(jenkins.jobs, jobScript);
Build b = job.startBuild();
assertBuild(b, false, String.format("Could not find credentials entry with ID \'%s\'", CRED_ID));
assertBuild(b, false, String.format("Could not find credentials entry with ID '%s'", CRED_ID));

this.authorizeUserToLaunchProject();

Expand Down

0 comments on commit 91c5c21

Please sign in to comment.