Skip to content

Commit

Permalink
Tests should not assume context path is "/labkey"
Browse files Browse the repository at this point in the history
  • Loading branch information
labkey-tchad committed Nov 9, 2023
1 parent ef08406 commit 81ee2d8
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -390,10 +390,10 @@ private void doVerifyCrossContainerDatasetStatus()
DATASETS.put(5004, "ELISATest");

String[][] statuses = {
{"Draft", "/labkey/reports/icon_draft.png", "D"},
{"Final", "/labkey/reports/icon_final.png", "F"},
{"Locked", "/labkey/reports/icon_locked.png", "L"},
{"Unlocked", "/labkey/reports/icon_unlocked.png", "U"}
{"Draft", WebTestHelper.getContextPath() + "/reports/icon_draft.png", "D"},
{"Final", WebTestHelper.getContextPath() + "/reports/icon_final.png", "F"},
{"Locked", WebTestHelper.getContextPath() + "/reports/icon_locked.png", "L"},
{"Unlocked", WebTestHelper.getContextPath() + "/reports/icon_unlocked.png", "U"}
};

String study2name = FOLDER_NAME2 + " Study";
Expand Down

0 comments on commit 81ee2d8

Please sign in to comment.