Skip to content

Commit

Permalink
Unit test fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeBlanch committed Jan 11, 2022
1 parent 4996728 commit 400fec9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/OpenTelemetry.Tests/Metrics/MetricAPITest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -777,7 +777,7 @@ private void MultithreadedHistogramTest<T>(long[] expected, T[] values)
{
foreach (var metricPoint in metric.GetMetricPoints())
{
bucketCounts = metricPoint.GetHistogramBuckets().BucketCounts;
bucketCounts = metricPoint.GetHistogramBuckets().RunningBucketCounts;
}
}
}));
Expand Down

0 comments on commit 400fec9

Please sign in to comment.