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

commit 8a5f5d8e98ecb99f3ee182dc4a2827146d1fdc67
Author: Vladimir Sitnikov <[email protected]>
AuthorDate: Sat Dec 30 11:58:48 2023 +0300

    Revert "refactor: JMeterSerialTest to Kotlin so we have one less 
compileJava task"
    
    This reverts commit 1c64012830204fea112215b49aa737a1543c27c9.
---
 .../kotlin/org/apache/jorphan/test/JMeterSerialTest.kt        | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git 
a/src/jorphan/src/testFixtures/kotlin/org/apache/jorphan/test/JMeterSerialTest.kt
 
b/src/jorphan/src/testFixtures/kotlin/org/apache/jorphan/test/JMeterSerialTest.kt
index a6d732bcbc..7f6ccd06b6 100644
--- 
a/src/jorphan/src/testFixtures/kotlin/org/apache/jorphan/test/JMeterSerialTest.kt
+++ 
b/src/jorphan/src/testFixtures/kotlin/org/apache/jorphan/test/JMeterSerialTest.kt
@@ -15,11 +15,11 @@
  * limitations under the License.
  */
 
-package org.apache.jorphan.test
+package org.apache.jorphan.test;
 
-import org.junit.jupiter.api.parallel.Execution
-import org.junit.jupiter.api.parallel.ExecutionMode
-import org.junit.jupiter.api.parallel.Isolated
+import org.junit.jupiter.api.parallel.Execution;
+import org.junit.jupiter.api.parallel.ExecutionMode;
+import org.junit.jupiter.api.parallel.Isolated;
 
 /**
  * Used to tag tests which need to be run on their own (in serial) because
@@ -27,4 +27,5 @@ import org.junit.jupiter.api.parallel.Isolated
  */
 @Isolated
 @Execution(ExecutionMode.SAME_THREAD)
-interface JMeterSerialTest
+public interface JMeterSerialTest {
+}

Reply via email to