class LicenseAcceptance::Acceptor

def output_num_persisted(count)

we still want to output the fact that the filesystem was changed.
In the case where users accept with a command line argument or environment variable
def output_num_persisted(count)
  s = count > 1 ? "s" : ""
  output.puts <<~EOM
    #{Strategy::Prompt::BORDER}
    #{Strategy::Prompt::CHECK} #{count} product license#{s} accepted.
    #{Strategy::Prompt::BORDER}
  EOM
end