Skip to content

Commit 8a5f5d8

Browse files
committed
Revert "refactor: JMeterSerialTest to Kotlin so we have one less compileJava task"
This reverts commit 1c64012.
1 parent 1c64012 commit 8a5f5d8

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

src/jorphan/src/testFixtures/kotlin/org/apache/jorphan/test/JMeterSerialTest.kt

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,17 @@
1515
* limitations under the License.
1616
*/
1717

18-
package org.apache.jorphan.test
18+
package org.apache.jorphan.test;
1919

20-
import org.junit.jupiter.api.parallel.Execution
21-
import org.junit.jupiter.api.parallel.ExecutionMode
22-
import org.junit.jupiter.api.parallel.Isolated
20+
import org.junit.jupiter.api.parallel.Execution;
21+
import org.junit.jupiter.api.parallel.ExecutionMode;
22+
import org.junit.jupiter.api.parallel.Isolated;
2323

2424
/**
2525
* Used to tag tests which need to be run on their own (in serial) because
2626
* either, they cause other tests to fail, or they fail when run in parallel.
2727
*/
2828
@Isolated
2929
@Execution(ExecutionMode.SAME_THREAD)
30-
interface JMeterSerialTest
30+
public interface JMeterSerialTest {
31+
}

0 commit comments

Comments
 (0)