Skip to content

Commit f69d5a2

Browse files
committed
./gradlew spotlessApply
1 parent 3cbd01c commit f69d5a2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

testing-common/src/main/java/io/opentelemetry/instrumentation/testing/recording/RecordingExtension.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ public RecordingExtension(String apiUrl) {
4242
this.apiUrl = apiUrl;
4343
}
4444

45-
4645
public boolean isRecording() {
4746
return RECORD_WITH_REAL_API;
4847
}

testing-common/src/main/java/io/opentelemetry/instrumentation/testing/recording/ResponseHeaderScrubber.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ public Response transform(
3131
// While we could potentially make these configurable, it's simpler to just handle
3232
// the cases across any gen AI instrumentation in one place here.
3333
case "openai-organization":
34-
scrubbed = scrubbed.plus(HttpHeader.httpHeader("openai-organization", "test_organization"));
34+
scrubbed =
35+
scrubbed.plus(HttpHeader.httpHeader("openai-organization", "test_organization"));
3536
break;
3637
default:
3738
scrubbed = scrubbed.plus(header);

0 commit comments

Comments
 (0)