Skip to content

Commit 33b0a1e

Browse files
committed
Fix ci failure
1 parent e748564 commit 33b0a1e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

google/cloud/storage/internal/async/object_descriptor_reader_tracing_test.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ TEST(ObjectDescriptorReaderTracing, Read) {
6262
auto spans = span_catcher->GetSpans();
6363
EXPECT_THAT(
6464
spans, ElementsAre(
65-
AllOf(SpanNamed("storage::AsyncConnection::ReadObjectRange"),
65+
AllOf(SpanNamed("storage::AsyncConnection::ReadRange"),
6666
SpanHasEvents(AllOf(
6767
EventNamed("gl-cpp.read-range"),
6868
SpanEventAttributesAre(
@@ -84,7 +84,7 @@ TEST(ObjectDescriptorReaderTracing, ReadError) {
8484
EXPECT_THAT(
8585
spans,
8686
ElementsAre(AllOf(
87-
SpanNamed("storage::AsyncConnection::ReadObjectRange"),
87+
SpanNamed("storage::AsyncConnection::ReadRange"),
8888
SpanHasAttributes(
8989
OTelAttribute<std::string>("gl-cpp.status_code", "NOT_FOUND")),
9090
SpanHasEvents(AllOf(EventNamed("gl-cpp.read-range"),

0 commit comments

Comments
 (0)