Skip to content

Commit bfaed20

Browse files
committed
Merge remote-tracking branch 'origin/develop' into fb_mail_transport_via_graph
2 parents 66f5e0e + af4fa5f commit bfaed20

6 files changed

Lines changed: 8 additions & 258 deletions

File tree

src/org/labkey/test/params/FieldDefinition.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -606,7 +606,6 @@ public boolean isMeasureByDefault()
606606
}
607607
};
608608
ColumnType File = new ColumnTypeImpl("File", "http://cpas.fhcrc.org/exp/xml#fileLink");
609-
ColumnType Flag = new ColumnTypeImpl("Flag", "string", "http://www.labkey.org/exp/xml#flag", null);
610609
ColumnType Attachment = new ColumnTypeImpl("Attachment", "http://www.labkey.org/exp/xml#attachment");
611610
ColumnType User = new ColumnTypeImpl("User", "int", null, new IntLookup("core", "users"));
612611
@Deprecated(since = "22.10") // 'Lookup' isn't a type outside of the UI

src/org/labkey/test/tests/AbstractAssayTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ protected void defineAssay()
388388
.setType(TEST_ASSAY_DATA_PROP_TYPES[i - TEST_ASSAY_DATA_PREDEFINED_PROP_COUNT])
389389
.setLabel(TEST_ASSAY_DATA_PROP_NAME + i);
390390
}
391-
propertiesPanel.addField("Flags").setType(FieldDefinition.ColumnType.Flag);
391+
392392
// Set some to required
393393
propertiesPanel.getField(0).setRequiredField(true);
394394
propertiesPanel.getField(TEST_ASSAY_DATA_PREDEFINED_PROP_COUNT + 2).setRequiredField(true);

src/org/labkey/test/tests/DataClassTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,8 @@ private void verifyTableIndices(String prefix, List<String> indexSuffixes)
420420
{
421421
List<String> suffixes = new ArrayList<>();
422422
suffixes.add("lsid");
423-
suffixes.add("name_classid");
423+
suffixes.add("name");
424+
suffixes.add("rowid");
424425
suffixes.addAll(indexSuffixes);
425426

426427
for (String suffix : suffixes)

src/org/labkey/test/tests/DataViewsTest.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,9 @@ public void sortDataViewsTest()
471471

472472
// check if top category sorts Alphabetical
473473
openCustomizePanel(ORIGINAL_WEBPART_TITLE);
474-
RadioButton().withLabel("Alphabetical").find(getDriver()).check();
474+
var alphabeticalRadio = RadioButton().withLabel("Alphabetical").find(getDriver());
475+
alphabeticalRadio.check();
476+
waitFor(alphabeticalRadio::isChecked, "Radio button 'Alphabetical' did not become checked after clicking.", 2000);
475477
clickButton("Save", 0);
476478
_ext4Helper.waitForMaskToDisappear();
477479
assertTextPresentInThisOrder(CATEGORIES[0], "Abbreviated Demographics", "Alt ID mapping", "APX-1: Abbreviated Physical Exam",

src/org/labkey/test/tests/FlagColumnTest.java

Lines changed: 0 additions & 254 deletions
This file was deleted.

src/org/labkey/test/tests/list/ListTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@
6464
import org.labkey.test.util.EscapeUtil;
6565
import org.labkey.test.util.LogMethod;
6666
import org.labkey.test.util.Maps;
67+
import org.labkey.test.util.OptionalFeatureHelper;
6768
import org.labkey.test.util.PortalHelper;
6869
import org.labkey.test.util.TestDataGenerator;
6970
import org.labkey.test.util.TextSearcher;
@@ -1693,6 +1694,7 @@ public void testAutoIncrementKeyEncoded()
16931694
@Test
16941695
public void testMultiChoiceValues()
16951696
{
1697+
OptionalFeatureHelper.enableOptionalFeature(getCurrentTest().createDefaultConnection(), "multiChoiceDataType");
16961698
Assume.assumeTrue("Multi-choice text fields are only supported on PostgreSQL", WebTestHelper.getDatabaseType() == WebTestHelper.DatabaseType.PostgreSQL);
16971699
// setup a list with an auto-increment key and multi text choice field
16981700
String encodedListName = TestDataGenerator.randomDomainName("multiChoiceList", DomainUtils.DomainKind.IntList);

0 commit comments

Comments
 (0)