# File lib/railsbench/railsbenchmark.rb, line 211
  def delete_test_session
    # no way to delete a session by going through the session adpater in rails 2.3
    if @session
      @session.delete
      @session = nil
    end
  end