# File lib/merb-core/test/matchers/controller_matchers.rb, line 57
    def failure_message
      msg = "expected #{inspect_target} to redirect to <#{@expected}>, but "
      if @redirected
        msg << "was <#{target_location}>"
      else
        msg << "there was no redirection"
      end
    end