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