From 2e64142bf25cb7948857e4be5a9663eb07120d67 Mon Sep 17 00:00:00 2001 From: alexjacks92 Date: Fri, 28 Mar 2014 14:40:18 -0400 Subject: [PATCH] Fixing UI test hang up - removed section of code that looked for a checkbox that has been removed. --- .../src/org/sleuthkit/autopsy/testing/RegressionTest.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Testing/test/qa-functional/src/org/sleuthkit/autopsy/testing/RegressionTest.java b/Testing/test/qa-functional/src/org/sleuthkit/autopsy/testing/RegressionTest.java index 66c9316057..2333ab949c 100755 --- a/Testing/test/qa-functional/src/org/sleuthkit/autopsy/testing/RegressionTest.java +++ b/Testing/test/qa-functional/src/org/sleuthkit/autopsy/testing/RegressionTest.java @@ -235,10 +235,6 @@ public class RegressionTest extends TestCase { jfco0.chooseFile(words); JTableOperator jto = new JTableOperator(jdo, 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 if (Boolean.parseBoolean(System.getProperty("mugen_mode"))) { JTabbedPaneOperator jtpo = new JTabbedPaneOperator(jdo);