Fixing UI test hang up - removed section of code that looked for a checkbox that has been removed.

This commit is contained in:
alexjacks92 2014-03-28 14:40:18 -04:00
parent 62476f6ffe
commit 2e64142bf2

View File

@ -235,10 +235,6 @@ public class RegressionTest extends TestCase {
jfco0.chooseFile(words); jfco0.chooseFile(words);
JTableOperator jto = new JTableOperator(jdo, 0); JTableOperator jto = new JTableOperator(jdo, 0);
jto.clickOnCell(0, 0); jto.clickOnCell(0, 0);
JCheckBoxOperator jcbo = new JCheckBoxOperator(jdo, "Use during ingest", 0);
if (!(jcbo.isSelected())) {
jcbo.doClick();
}
new Timeout("pausing", 1000).sleep(); // give it a second to process new Timeout("pausing", 1000).sleep(); // give it a second to process
if (Boolean.parseBoolean(System.getProperty("mugen_mode"))) { if (Boolean.parseBoolean(System.getProperty("mugen_mode"))) {
JTabbedPaneOperator jtpo = new JTabbedPaneOperator(jdo); JTabbedPaneOperator jtpo = new JTabbedPaneOperator(jdo);