Automated Code Change

PiperOrigin-RevId: 965775373
diff --git a/src/google/protobuf/io/coded_stream_unittest.cc b/src/google/protobuf/io/coded_stream_unittest.cc
index 513ee97..1959f57 100644
--- a/src/google/protobuf/io/coded_stream_unittest.cc
+++ b/src/google/protobuf/io/coded_stream_unittest.cc
@@ -1072,7 +1072,7 @@
                                  16, 17, 50, 100, 1023, 1024, 8000, 16000};
     int total_size = 0;
     std::vector<int> sizes;
-    for (size_t i = 0; i < ABSL_ARRAYSIZE(kSizes); ++i) {
+    for (size_t i = 0; i < std::size(kSizes); ++i) {
       sizes.push_back(kSizes[i]);
       total_size += kSizes[i];
     }