-
Notifications
You must be signed in to change notification settings - Fork 7
Remove MVTC experimental flag #7622
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -42,7 +42,6 @@ | |
| import org.labkey.test.util.DomainUtils; | ||
| import org.labkey.test.util.LogMethod; | ||
| import org.labkey.test.util.LoggedParam; | ||
| import org.labkey.test.util.OptionalFeatureHelper; | ||
| import org.labkey.test.util.PortalHelper; | ||
| import org.labkey.test.util.TestDataGenerator; | ||
| import org.labkey.test.util.data.TestDataUtils; | ||
|
|
@@ -189,7 +188,6 @@ public void testDatasets() | |
| public void testDatasetWithMultiChoice() | ||
| { | ||
| Assume.assumeTrue("Multi-choice text fields are only supported on PostgreSQL", WebTestHelper.getDatabaseType() == WebTestHelper.DatabaseType.PostgreSQL); | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. unrelated to this PR, but the tests that have this check, do they just fail in MSSQL runs? seems like we'd instead just want to return if not postgres so that the test "passes" and doesn't cause noise on TC.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Looking at the documentation, a failed assume would halt and ignore the rest of the test, which sounds correct. |
||
| OptionalFeatureHelper.enableOptionalFeature(getCurrentTest().createDefaultConnection(), "multiChoiceDataType"); | ||
| String datasetName = "Test dataset"; | ||
| DatasetDesignerPage definitionPage = _studyHelper.goToManageDatasets() | ||
| .clickCreateNewDataset() | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
minor: looks like this test and some others in the various PRs here have an unused import of
OptionalFeatureHelperthat can be removed.