this.mBeanServer.setAttribute(objectName,
new Attribute(ProxoolJMXHelper.getValidIdentifier(ProxoolConstants.FATAL_SQL_EXCEPTION), "dingo"));
assertTrue("We did not get notified when updating through JMX.", this.notified);
this.notified = false;
// test when updated through ProxoolFacade
info = (Properties) info.clone();
info.put(ProxoolConstants.MAXIMUM_CONNECTION_COUNT, "1");
ProxoolFacade.updateConnectionPool(ProxoolConstants.PROPERTY_PREFIX + alias, info);
assertTrue("We did not get notified when updating through ProxoolFacade.", this.notified);
ProxoolFacade.removeConnectionPool(alias);
}