'rake test' does not recognize my existing tests in describe...do...end after migration to Rails 7 (from Rails 6.1)

My test class:
class ReportsControllerTest < ActionController::TestCase
describe “GET #selection” do
it “gets selection csv without error” do ####### this test is not found

assert_equal(…)
end
end

it "can download csv review report" do  ###### this test is found
  assert_equal... 
end

end