Skip to content

Commit

Permalink
LPS-53436 SF
Browse files Browse the repository at this point in the history
  • Loading branch information
brianchandotcom committed Feb 26, 2015
1 parent c26896a commit 477eaef
Showing 1 changed file with 6 additions and 6 deletions.
Expand Up @@ -94,7 +94,7 @@ public void testFailedLayoutExport() throws Exception {
}
catch (Throwable t) {
if (_log.isInfoEnabled()) {
_log.info(t);
_log.info(t, t);
}
}

Expand All @@ -114,7 +114,7 @@ public void testFailedLayoutImport() throws Exception {
}
catch (Throwable t) {
if (_log.isInfoEnabled()) {
_log.info(t);
_log.info(t, t);
}
}

Expand All @@ -133,7 +133,7 @@ public void testFailedLayoutLocalPublishing() throws Exception {
}
catch (Throwable t) {
if (_log.isInfoEnabled()) {
_log.info(t);
_log.info(t, t);
}
}

Expand All @@ -155,7 +155,7 @@ public void testFailedPortletExport() throws Exception {
}
catch (Throwable t) {
if (_log.isInfoEnabled()) {
_log.info(t);
_log.info(t, t);
}
}

Expand All @@ -175,7 +175,7 @@ public void testFailedPortletImport() throws Exception {
}
catch (Throwable t) {
if (_log.isInfoEnabled()) {
_log.info(t);
_log.info(t, t);
}
}

Expand Down Expand Up @@ -218,7 +218,7 @@ public void testFailedPortletLocalPublishing() throws Exception {
}
catch (Throwable t) {
if (_log.isInfoEnabled()) {
_log.info(t);
_log.info(t, t);
}
}

Expand Down

0 comments on commit 477eaef

Please sign in to comment.