Skip to content

Commit

Permalink
Possible fix for #210
Browse files Browse the repository at this point in the history
  • Loading branch information
chkal committed May 28, 2015
1 parent 2305b96 commit 9ad4fb9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
import org.jboss.shrinkwrap.api.asset.StringAsset;
import org.jboss.shrinkwrap.api.spec.WebArchive;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.ocpsoft.rewrite.Root;
Expand Down Expand Up @@ -81,7 +80,6 @@ public void testI18nSupportWithAccent() throws Exception
}

@Test
@Ignore
public void testI18nSupportOutbound() throws Exception
{
HttpAction<HttpGet> action = get("/en/search.xhtml");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ public Join to(final String resource)
this.outboundConditionCache = resourcePath;
for (String name : parameters) {
Query parameter = Query.parameterExists(name);
outboundConditionCache = outboundConditionCache.and(parameter);
outboundConditionCache = parameter.and(outboundConditionCache);
}
}

Expand Down

0 comments on commit 9ad4fb9

Please sign in to comment.