You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GitHub Issue #688: Sample's Created By and Modified By fields do not resolve correctly when added to assay results grid if sample lookup is set to a specific sample type (#7564)
- use schema getTable() for materialIdForeignKey
- add test case to AssayTest
// assertElementPresent("Sample lookup failed for: OS_1", new Locator.LinkLocator("OS_1"), 1); //TODO this becomes the RowId "<123>" after change. Issue #40047
log("GitHub Issue #688: verify sample lookup to createdBy");
333
+
table = newDataRegionTable("Data", getDriver());
334
+
for (inti = 0; i < table.getDataRowCount(); i++)
335
+
assertEquals("Row " + i + " should have current user as createdBy since they all resolve to samples", getCurrentUserName(), table.getDataAsText(i, "SampleField/CreatedBy"));
0 commit comments