File tree 2 files changed +1
-3
lines changed
api-tests/src/test/java/org/ocpsoft/rewrite/transposition
config-servlet/src/main/java/org/ocpsoft/rewrite/servlet/config/rule
2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change 23
23
import org .jboss .shrinkwrap .api .asset .StringAsset ;
24
24
import org .jboss .shrinkwrap .api .spec .WebArchive ;
25
25
import org .junit .Assert ;
26
- import org .junit .Ignore ;
27
26
import org .junit .Test ;
28
27
import org .junit .runner .RunWith ;
29
28
import org .ocpsoft .rewrite .Root ;
@@ -81,7 +80,6 @@ public void testI18nSupportWithAccent() throws Exception
81
80
}
82
81
83
82
@ Test
84
- @ Ignore
85
83
public void testI18nSupportOutbound () throws Exception
86
84
{
87
85
HttpAction <HttpGet > action = get ("/en/search.xhtml" );
Original file line number Diff line number Diff line change @@ -164,7 +164,7 @@ public Join to(final String resource)
164
164
this .outboundConditionCache = resourcePath ;
165
165
for (String name : parameters ) {
166
166
Query parameter = Query .parameterExists (name );
167
- outboundConditionCache = outboundConditionCache .and (parameter );
167
+ outboundConditionCache = parameter .and (outboundConditionCache );
168
168
}
169
169
}
170
170
You can’t perform that action at this time.
0 commit comments