Skip to content

Commit 5c1bd01

Browse files
authored
Merge pull request #74 from BimberLab/21.7_fb_merge
Merge discvr-21.3 to discvr-21.7
2 parents 242d278 + 0663467 commit 5c1bd01

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

SequenceAnalysis/test/src/org/labkey/test/tests/external/labModules/SequenceTest.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -986,18 +986,18 @@ private void readsetPanelTest() throws IOException
986986
sleep(200);
987987
waitForElement(Locator.tagContainingText("span", "5' Barcode").notHidden());
988988
Assert.assertEquals("Incorrect value for input file-handling field after barcode toggle", "compress", treatmentField.getValue());
989-
Assert.assertEquals("The test is looking for the wrong column index for 5' barcode", "barcode5", readsetGrid.getEval("columns[2].dataIndex"));
990-
Assert.assertEquals("The test is looking for the wrong column index for 3' barcode", "barcode3", readsetGrid.getEval("columns[3].dataIndex"));
989+
Assert.assertEquals("The test is looking for the wrong column index for 5' barcode", "barcode5", readsetGrid.getEval("columns[3].dataIndex"));
990+
Assert.assertEquals("The test is looking for the wrong column index for 3' barcode", "barcode3", readsetGrid.getEval("columns[4].dataIndex"));
991991

992-
Assert.assertFalse("5' barcode column should not be hidden", (Boolean) readsetGrid.getEval("columns[2].hidden"));
993-
Assert.assertFalse("3' barcode column should not be hidden", (Boolean) readsetGrid.getEval("columns[3].hidden"));
992+
Assert.assertFalse("5' barcode column should not be hidden", (Boolean) readsetGrid.getEval("columns[3].hidden"));
993+
Assert.assertFalse("3' barcode column should not be hidden", (Boolean) readsetGrid.getEval("columns[4].hidden"));
994994

995995
barcodeField.setChecked(false);
996996
sleep(200);
997997
waitForElementToDisappear(Locator.tagContainingText("span", "5' Barcode").notHidden());
998998
assertEquals("Incorrect value for input file-handling field after barcode toggle", "delete", treatmentField.getValue());
999-
assertTrue("5' barcode column should be hidden", (Boolean) readsetGrid.getEval("columns[2].hidden"));
1000-
assertTrue("3' barcode column should be hidden", (Boolean) readsetGrid.getEval("columns[3].hidden"));
999+
assertTrue("5' barcode column should be hidden", (Boolean) readsetGrid.getEval("columns[3].hidden"));
1000+
assertTrue("3' barcode column should be hidden", (Boolean) readsetGrid.getEval("columns[4].hidden"));
10011001

10021002
waitAndClick(Ext4Helper.Locators.ext4Button("Import Data"));
10031003
new Window.WindowFinder(getDriver()).withTitle("Error").waitFor();

0 commit comments

Comments
 (0)