diff --git a/tests/thread_test.c b/tests/thread_test.c index 50085d843..9d9fb62d9 100644 --- a/tests/thread_test.c +++ b/tests/thread_test.c @@ -80,7 +80,7 @@ static int s_test_thread_creation_join_invalid_cpu_id_fn(struct aws_allocator *a struct aws_thread_options thread_options = *aws_default_thread_options(); /* invalid cpu_id. Ensure that the cpu_id is best-effort based. */ - thread_options.cpu_id = 4096; + thread_options.cpu_id = 512; ASSERT_SUCCESS( aws_thread_launch(&thread, s_thread_fn, (void *)&test_data, &thread_options), "thread creation failed");