[ https://issues.apache.org/jira/browse/GEODE-1462?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Kirk Lund reassigned GEODE-1462: -------------------------------- Assignee: Kirk Lund > Change tests with OS conditional early-outs to use org.junit.Assume > ------------------------------------------------------------------- > > Key: GEODE-1462 > URL: https://issues.apache.org/jira/browse/GEODE-1462 > Project: Geode > Issue Type: Bug > Components: tests > Reporter: Kirk Lund > Assignee: Kirk Lund > Priority: Minor > > Example: > {noformat} > @Test > public void testWarning() throws Exception { > if (!isLinux()) { > return; > } > {noformat} > This should instead use: > {noformat} > @Test > public void testWarning() throws Exception { > assumeTrue(SystemUtils.isLinux()); > {noformat} -- This message was sent by Atlassian JIRA (v6.3.4#6332)