Skip to content

Commit 8c3ab87

Browse files
committed
test(dev): Update conventions tests after refactoring
Signed-off-by: Thomas Vitale <ThomasVitale@users.noreply.github.com>
1 parent d2b75be commit 8c3ab87

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

arconia-observation/arconia-openinference-semantic-conventions/src/test/java/io/arconia/observation/openinference/autoconfigure/OpenInferenceEnvironmentPostProcessorTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ void postProcessEnvironmentShouldMapTraceProperties() {
3939

4040
processor.postProcessEnvironment(environment, new SpringApplication());
4141

42-
String prefix = OpenInferenceProperties.CONFIG_PREFIX + ".traces";
42+
String prefix = OpenInferenceProperties.CONFIG_PREFIX + ".options";
4343
assertThat(environment.getProperty(prefix + ".hide-inputs")).isEqualTo("true");
4444
assertThat(environment.getProperty(prefix + ".base64-image-max-length")).isEqualTo("64000");
4545
}
@@ -51,7 +51,7 @@ void postProcessEnvironmentShouldNotMapInvalidProperties() {
5151

5252
processor.postProcessEnvironment(environment, new SpringApplication());
5353

54-
String prefix = OpenInferenceProperties.CONFIG_PREFIX + ".traces";
54+
String prefix = OpenInferenceProperties.CONFIG_PREFIX + ".options";
5555
assertThat(environment.getProperty(prefix + ".base64-image-max-length")).isNull();
5656
}
5757

0 commit comments

Comments
 (0)