Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
import org.labkey.test.Locator;
import org.labkey.test.TestFileUtils;
import org.labkey.test.TestTimeoutException;
import org.labkey.test.WebTestHelper;
import org.labkey.test.components.BodyWebPart;
import org.labkey.test.components.SubfoldersWebPart;
import org.labkey.test.components.panoramapublic.TargetedMsExperimentInsertPage;
Expand Down Expand Up @@ -113,10 +114,6 @@ public static void initProject()
@After
public void afterTest() throws IOException, CommandException
{
if (isImpersonating())
{
stopImpersonating();
}
verifySymlinks();
}

Expand Down Expand Up @@ -149,7 +146,7 @@ private void createPanoramaPublicJournalProject()

boolean verifySymlinks() throws IOException, CommandException
{
Connection connection = createDefaultConnection();
Connection connection = WebTestHelper.getRemoteApiConnection(false);
SimpleGetCommand command = new SimpleGetCommand("PanoramaPublic", "verifySymlinks");
CommandResponse verifyResponse = command.execute(connection, "/");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ private void verifyColumnValues(DataRegionTable table, int catalogEntryCol, int
@NotNull
private DataRegionTable myDataView()
{
var table = new DataRegionTable.DataRegionFinder(getDriver()).refindWhenNeeded();
var table = new DataRegionTable("Targeted MS Experiment List", getDriver());
assertTrue(table.hasHeaderMenu("My Data"));
table.clickHeaderButtonAndWait("My Data");
return new DataRegionTable.DataRegionFinder(getDriver()).refindWhenNeeded();
Expand Down