Skip to content

Commit 53e87ce

Browse files
committed
update comment.
1 parent c7d0c49 commit 53e87ce

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
@@ -715,22 +715,22 @@ public void testSdkClientSpanWithRemoteResourceAttributes() {
715715
validateRemoteResourceAttributes("AWS::Bedrock::Agent", "test_agent_^^id");
716716
mockAttribute(AWS_AGENT_ID, null);
717717

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

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

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

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

0 commit comments

Comments
 (0)