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 b36a9c41dcdecdb93ae6622114f70ccb78d7ab83 Author: Vladimir Sitnikov <[email protected]> AuthorDate: Sat Dec 30 12:19:55 2023 +0300 Reapply "refactor: JMeterSerialTest to Kotlin so we have one less compileJava task" This reverts commit 8a5f5d8e98ecb99f3ee182dc4a2827146d1fdc67. --- .../kotlin/org/apache/jorphan/test/JMeterSerialTest.kt | 11 +++++------ 1 file changed, 5 insertions(+), 6 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 7f6ccd06b6..a6d732bcbc 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,5 +27,4 @@ import org.junit.jupiter.api.parallel.Isolated; */ @Isolated @Execution(ExecutionMode.SAME_THREAD) -public interface JMeterSerialTest { -} +interface JMeterSerialTest
