Skip to content

Commit b36a9c4

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

1 file changed

Lines changed: 5 additions & 6 deletions

File tree

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

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,16 @@
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-
public interface JMeterSerialTest {
31-
}
30+
interface JMeterSerialTest

0 commit comments

Comments
 (0)