# File lib/fog/openstack/requests/identity/update_tenant.rb, line 16
        def update_tenant(id, attributes)
          response = Excon::Response.new
          response.status = [200, 204][rand(1)]
          attributes = {'enabled' => true, 'id' => '1'}.merge(attributes)
          response.body = {
            'tenant' => attributes
          }
          response
        end