Skip to content

Commit

Permalink
Use +=
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Jan 15, 2024
1 parent e569add commit 6885efb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ public void testDescendentName() throws Exception {
assertSameName(path, baseName, "some-child", NameScope.DESCENDENT);

// Test compound name
path = path + "/grand-child";
path += "/grand-child";
assertSameName(path, baseName, "some-child/grand-child", NameScope.DESCENDENT);

// Test relative names
Expand Down

0 comments on commit 6885efb

Please sign in to comment.