Skip to content

Commit c1db80c

Browse files
committed
Merge PR #390: Update jfr-events module to follow style guide
2 parents 64a92cb + ae1ba06 commit c1db80c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

jfr-events/src/test/java/io/opentelemetry/contrib/jfrevent/JfrSpanProcessorTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
package io.opentelemetry.contrib.jfrevent;
77

8-
import static org.assertj.core.api.AssertionsForInterfaceTypes.assertThat;
8+
import static org.assertj.core.api.Assertions.assertThat;
99

1010
import io.opentelemetry.api.trace.Span;
1111
import io.opentelemetry.api.trace.Tracer;
@@ -52,7 +52,7 @@ void tearDown() {
5252
* @throws java.io.IOException on io error
5353
*/
5454
@Test
55-
public void basicSpan() throws IOException {
55+
void basicSpan() throws IOException {
5656
Path output = Files.createTempFile("test-basic-span", ".jfr");
5757

5858
try {
@@ -89,7 +89,7 @@ public void basicSpan() throws IOException {
8989
* @throws java.lang.InterruptedException interrupted sleep
9090
*/
9191
@Test
92-
public void basicSpanWithScope() throws IOException, InterruptedException {
92+
void basicSpanWithScope() throws IOException, InterruptedException {
9393
Path output = Files.createTempFile("test-basic-span-with-scope", ".jfr");
9494

9595
try {

0 commit comments

Comments
 (0)