Skip to content

Commit

Permalink
Code review updates
Browse files Browse the repository at this point in the history
  • Loading branch information
labkey-sweta committed Dec 3, 2024
1 parent 40b2cd4 commit c41d5be
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/org/labkey/test/tests/UserEditorWithoutDeleteTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,12 @@ public void testFileDeleteWithEditorWithoutDeleteUser()
@Override
protected String getProjectName()
{
return "UserEditorWithoutDeleteTest Project";
return getClass().getSimpleName() + TRICKY_CHARACTERS_FOR_PROJECT_NAMES + " Project";
}

@Override
public List<String> getAssociatedModules()
{
return Arrays.asList();
return Arrays.asList("FileContent");
}
}
3 changes: 1 addition & 2 deletions src/org/labkey/test/util/core/webdav/WebDavUploadHelper.java
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,7 @@ public void deleteFile(@NotNull String file, boolean shouldFail)
{
try
{
if (_sardine.exists(file))
_sardine.delete(file);
_sardine.delete(file);
}
catch (IOException e)
{
Expand Down

0 comments on commit c41d5be

Please sign in to comment.