Can’t get custom posts of taxonomy to show

$args = array(
    'post_type' => 'brand',
    'tax_query' => array(
        'relation' => 'AND',
        array(
            'taxonomy' => 'brand-categories',
            'field'    => 'name',
            'terms'    => get_queried_object()
        )
    ),
);// end args