diff --git a/src/org/labkey/test/categories/SignalData.java b/src/org/labkey/test/categories/SignalData.java deleted file mode 100644 index 0e871c3742..0000000000 --- a/src/org/labkey/test/categories/SignalData.java +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Copyright (c) 2016-2019 LabKey Corporation - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.labkey.test.categories; - -/** - * Created by iansigmon on 9/19/16. - */ -public class SignalData extends Test -{ -} diff --git a/src/org/labkey/test/tests/DataViewsPermissionsTest.java b/src/org/labkey/test/tests/DataViewsPermissionsTest.java index 371614aa8b..0a40248195 100644 --- a/src/org/labkey/test/tests/DataViewsPermissionsTest.java +++ b/src/org/labkey/test/tests/DataViewsPermissionsTest.java @@ -31,8 +31,8 @@ @BaseWebDriverTest.ClassTimeout(minutes = 10) public class DataViewsPermissionsTest extends StudyBaseTest { - public static final String AUTHOR_USER = "author@dataviews.test"; - public static final String EDITOR_USER = "editor@dataviews.test"; + public static final String AUTHOR_USER = "dvp_author@dataviews.test"; + public static final String EDITOR_USER = "dvp_editor@dataviews.test"; private final PortalHelper portalHelper = new PortalHelper(this); @Override @@ -121,7 +121,7 @@ protected void doCreateSteps() clickFolder(getFolderName()); click(Locator.tag("a").withAttributeContaining("href", "editDataViews")); openEditPanel("Report 2"); - _ext4Helper.selectComboBoxItem("Author","author"); + _ext4Helper.selectComboBoxItem("Author", _userHelper.getDisplayNameForEmail(AUTHOR_USER)); _ext4Helper.checkCheckbox("Shared"); sleep(1000); _ext4Helper.clickWindowButton("Report 2","Save",0,0); @@ -129,7 +129,7 @@ protected void doCreateSteps() clickFolder(getFolderName()); click(Locator.tag("a").withAttributeContaining("href", "editDataViews")); openEditPanel("Report 3"); - _ext4Helper.selectComboBoxItem("Author","editor"); + _ext4Helper.selectComboBoxItem("Author", _userHelper.getDisplayNameForEmail(EDITOR_USER)); _ext4Helper.checkCheckbox("Shared"); sleep(1000); _ext4Helper.clickWindowButton("Report 3","Save",0,0);