Skip to content

Commit 6f10059

Browse files
zzhloginthpierce
authored andcommitted
update comment.
1 parent c77f967 commit 6f10059

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

awsagentprovider/src/test/java/software/amazon/opentelemetry/javaagent/providers/AwsMetricAttributeGeneratorTest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -716,22 +716,22 @@ public void testSdkClientSpanWithRemoteResourceAttributes() {
716716
validateRemoteResourceAttributes("AWS::Bedrock::Agent", "test_agent_^^id");
717717
mockAttribute(AWS_AGENT_ID, null);
718718

719-
// Validate behaviour of AWS_KNOWLEDGEBASE_ID attribute, then remove it.
719+
// Validate behaviour of AWS_KNOWLEDGE_BASE_ID attribute, then remove it.
720720
mockAttribute(AWS_KNOWLEDGE_BASE_ID, "test_knowledgeBase_id");
721721
validateRemoteResourceAttributes("AWS::Bedrock::KnowledgeBase", "test_knowledgeBase_id");
722722
mockAttribute(AWS_KNOWLEDGE_BASE_ID, null);
723723

724-
// Validate behaviour of AWS_KNOWLEDGEBASE_ID attribute with special chars(^), then remove it.
724+
// Validate behaviour of AWS_KNOWLEDGE_BASE_ID attribute with special chars(^), then remove it.
725725
mockAttribute(AWS_KNOWLEDGE_BASE_ID, "test_knowledgeBase_^id");
726726
validateRemoteResourceAttributes("AWS::Bedrock::KnowledgeBase", "test_knowledgeBase_^^id");
727727
mockAttribute(AWS_KNOWLEDGE_BASE_ID, null);
728728

729-
// Validate behaviour of AWS_BEDROCK_DATASOURCE_ID attribute, then remove it.
729+
// Validate behaviour of AWS_DATA_SOURCE_ID attribute, then remove it.
730730
mockAttribute(AWS_DATA_SOURCE_ID, "test_datasource_id");
731731
validateRemoteResourceAttributes("AWS::Bedrock::DataSource", "test_datasource_id");
732732
mockAttribute(AWS_DATA_SOURCE_ID, null);
733733

734-
// Validate behaviour of AWS_BEDROCK_DATASOURCE_ID attribute with special chars(^), then remove
734+
// Validate behaviour of AWS_DATA_SOURCE_ID attribute with special chars(^), then remove
735735
// it.
736736
mockAttribute(AWS_DATA_SOURCE_ID, "test_datasource_^id");
737737
validateRemoteResourceAttributes("AWS::Bedrock::DataSource", "test_datasource_^^id");

0 commit comments

Comments
 (0)