`get_posts()` ignore my custom post

If we do not specify post types, WordPress searches only ‘posts’

$actus_new = get_posts( array(
    'post_type'      => array( 'cantine', 'post' ),
    'post__in'       => $ids,
    'posts_per_page' => 5,
) );