Skip to content

Commit

Permalink
Fix embedding integration test after telemetry updates (#5555)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephentoub authored Oct 22, 2024
1 parent 651546f commit aa63ac7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ public virtual async Task OpenTelemetry_CanEmitTracesAndMetrics()

Assert.Single(activities);
var activity = activities.Single();
Assert.StartsWith("embedding", activity.DisplayName);
Assert.StartsWith("embed", activity.DisplayName);
Assert.StartsWith("http", (string)activity.GetTagItem("server.address")!);
Assert.Equal(embeddingGenerator.Metadata.ProviderUri?.Port, (int)activity.GetTagItem("server.port")!);
Assert.NotNull(activity.Id);
Expand Down

0 comments on commit aa63ac7

Please sign in to comment.