Skip to content

Commit 00d5cff

Browse files
committed
Merge 19.3.1 into develop
2 parents 3ed9614 + a9d3c34 commit 00d5cff

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

LDK/src/org/labkey/ldk/query/IndexStatsTable.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
package org.labkey.ldk.query;
22

33
import org.jetbrains.annotations.NotNull;
4-
import org.labkey.api.data.ColumnInfo;
54
import org.labkey.api.data.ContainerFilter;
6-
import org.labkey.api.data.CrosstabMeasure;
75
import org.labkey.api.data.DbSchema;
86
import org.labkey.api.data.JdbcType;
97
import org.labkey.api.data.SQLFragment;
108
import org.labkey.api.data.VirtualTable;
119
import org.labkey.api.query.ExprColumn;
1210
import org.labkey.api.query.UserSchema;
13-
import org.labkey.ldk.LDKSchema;
1411

1512
/**
1613

LDK/test/src/org/labkey/test/tests/external/labModules/LabModulesTest.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
import org.labkey.test.categories.External;
4141
import org.labkey.test.categories.LabModule;
4242
import org.labkey.test.components.CustomizeView;
43+
import org.labkey.test.components.ext4.ComboBox;
4344
import org.labkey.test.components.ext4.RadioButton;
4445
import org.labkey.test.util.APIContainerHelper;
4546
import org.labkey.test.util.AdvancedSqlTest;
@@ -1782,7 +1783,9 @@ private void defaultAssayImportMethodTest()
17821783
waitAndClickAndWait(Locator.linkContainingText("Set Assay Defaults"));
17831784
String defaultVal = "UC Davis STR";
17841785
_helper.waitForField(GENOTYPING_ASSAYNAME);
1785-
Ext4FieldRef.getForLabel(this, GENOTYPING_ASSAYNAME).setValue(defaultVal);
1786+
ComboBox.ComboBox(getDriver()).withLabelContaining(GENOTYPING_ASSAYNAME)
1787+
.find(getDriver())
1788+
.selectComboBoxItem(defaultVal);
17861789
waitAndClick(Ext4Helper.Locators.ext4Button("Submit"));
17871790

17881791
waitForElement(Ext4Helper.Locators.window("Success"));

0 commit comments

Comments
 (0)