Skip to content
Snippets Groups Projects
Commit 60bf4a9f authored by Brian Major's avatar Brian Major
Browse files

s1965 - reversed exception catching order

parent 8d2419fd
No related branches found
No related tags found
No related merge requests found
......@@ -137,19 +137,18 @@ public class AbstractLdapDAOTest
{
config = getLdapConfig();
}
catch (RuntimeException e)
catch (NoSuchElementException e)
{
log.warn("Skipping integration test: no ~/.dbrc file");
log.warn("Skipping integration test: no entry in ~/.dbrc file");
org.junit.Assume.assumeTrue(false);
return;
}
catch (NoSuchElementException e)
catch (RuntimeException e)
{
log.warn("Skipping integration test: no entry in ~/.dbrc file");
log.warn("Skipping integration test: no ~/.dbrc file");
org.junit.Assume.assumeTrue(false);
return;
}
cadcDaoTest1_HttpPrincipal = new HttpPrincipal(cadcDaoTest1_CN);
cadcDaoTest2_HttpPrincipal = new HttpPrincipal(cadcDaoTest2_CN);
cadcDaoTest3_HttpPrincipal = new HttpPrincipal(cadcDaoTest3_CN);
......@@ -239,7 +238,7 @@ public class AbstractLdapDAOTest
return new LdapUserDAO(connections);
}
static protected LdapConfig getLdapConfig()
static protected LdapConfig getLdapConfig() throws Exception
{
return LdapConfig.loadLdapConfig(CONFIG);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment