Skip to content

Commit

Permalink
rawEncoding getSafeName within getRelativePathFrom in TestObject.java (
Browse files Browse the repository at this point in the history
…#668)

Co-authored-by: Ahad Mammadov <ahad@cybeats.com>
  • Loading branch information
ahadalioglu and Ahad Mammadov authored Dec 19, 2024
1 parent 39e1716 commit 1a235ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/hudson/tasks/test/TestObject.java
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ public String getRelativePathFrom(TestObject it) {
while (next != null && it != next) {
cur = next;
buf.insert(0, '/');
buf.insert(0, cur.getSafeName());
buf.insert(0, Util.rawEncode(cur.getSafeName()));
next = cur.getParent();
}
if (it == next) {
Expand Down

0 comments on commit 1a235ab

Please sign in to comment.