From b5301e689a8b6e683f9453af774db97f59c330c5 Mon Sep 17 00:00:00 2001 From: Richard Cordovano Date: Thu, 12 Sep 2019 15:14:24 -0400 Subject: [PATCH] Fix incorrect use of Autopsy Logger in RegressionTest class --- .../src/org/sleuthkit/autopsy/testing/RegressionTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 0a7feaa46c..8f1ef48a4c 100644 --- a/Testing/test/qa-functional/src/org/sleuthkit/autopsy/testing/RegressionTest.java +++ b/Testing/test/qa-functional/src/org/sleuthkit/autopsy/testing/RegressionTest.java @@ -20,7 +20,7 @@ package org.sleuthkit.autopsy.testing; import java.io.File; import java.io.IOException; -import org.sleuthkit.autopsy.coreutils.Logger; +import java.util.logging.Logger; import junit.framework.Test; import junit.framework.TestCase; import org.netbeans.jemmy.Timeouts;