Skip to content

Commit 8a965c3

Browse files
committed
Fix
1 parent 8fb6f11 commit 8a965c3

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

test/pp_api_test/test_imgcodec.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ TEST(ImageDecoderTest, TestJpegEncoderDecoder) {
112112

113113
out_range = out_tensor.Data() + 438 * width * 3;
114114
ASSERT_EQ(std::vector<uint8_t>(out_range, out_range + 12),
115-
std::vector<uint8_t>({84, 68, 53, 86, 70, 55, 92, 76, 59, 101, 86, 65}));
115+
std::vector<uint8_t>({84, 68, 53, 86, 70, 55, 92, 77, 58, 101, 86, 67}));
116116

117117
out_range = out_tensor.Data() + 875 * width * 3 + 1296 * 3;
118118
ASSERT_EQ(std::vector<uint8_t>(out_range, out_range + 12),

tools/ios/get_simulator_device_info.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -141,10 +141,8 @@ def main():
141141
_ = parser.parse_args() # no args yet
142142

143143
info = get_simulator_device_info(
144-
# The macOS-15 hosted agent image has iOS 17 which is currently in beta. Limit it to 16.4 for now.
145-
# See https://github.com/actions/runner-images/issues/8023
146-
# TODO Remove max_runtime_version limit.
147-
max_runtime_version_str="16.4",
144+
# Allow iOS 18.x simulators (Xcode 16 on macOS 15)
145+
max_runtime_version_str="18.2",
148146
)
149147

150148
print(json.dumps(info, indent=2))

0 commit comments

Comments
 (0)