This is an automated email from the ASF dual-hosted git repository.
vladimirsitnikov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jmeter.git
The following commit(s) were added to refs/heads/master by this push:
new 6e4c3c6 Fix imports in JUnitTestSamplerGui
6e4c3c6 is described below
commit 6e4c3c664ac4dc6df48e3340ec7b1cdfb29079a3
Author: Vladimir Sitnikov <[email protected]>
AuthorDate: Mon Mar 30 00:28:34 2020 +0300
Fix imports in JUnitTestSamplerGui
---
.../apache/jmeter/protocol/java/control/gui/JUnitTestSamplerGui.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git
a/src/protocol/junit/src/main/java/org/apache/jmeter/protocol/java/control/gui/JUnitTestSamplerGui.java
b/src/protocol/junit/src/main/java/org/apache/jmeter/protocol/java/control/gui/JUnitTestSamplerGui.java
index b780038..eeed649 100644
---
a/src/protocol/junit/src/main/java/org/apache/jmeter/protocol/java/control/gui/JUnitTestSamplerGui.java
+++
b/src/protocol/junit/src/main/java/org/apache/jmeter/protocol/java/control/gui/JUnitTestSamplerGui.java
@@ -50,9 +50,10 @@ import org.junit.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
-import junit.framework.TestCase;
import net.miginfocom.swing.MigLayout;
+import junit.framework.TestCase;
+
/**
* The <code>JUnitTestSamplerGui</code> class provides the user interface
* for the {@link JUnitSampler}.