mirror of https://github.com/apache/jclouds.git
Issue 117: fixed pom.xml and character encodings
git-svn-id: http://jclouds.googlecode.com/svn/trunk@2267 3d8758e0-26b5-11de-8745-db77d3ebf521
This commit is contained in:
parent
ed1921f261
commit
9a654d7708
|
@ -37,6 +37,6 @@
|
|||
<packaging>pom</packaging>
|
||||
<name>jclouds Maven archetypes</name>
|
||||
<modules>
|
||||
<module>jclouds-json-client-archetype</module>
|
||||
<module>json-client-archetype</module>
|
||||
</modules>
|
||||
</project>
|
||||
|
|
|
@ -295,7 +295,7 @@ public class BaseBlobIntegrationTest<S> extends BaseBlobStoreIntegrationTest<S>
|
|||
|
||||
@DataProvider(name = "delete")
|
||||
public Object[][] createData() {
|
||||
return new Object[][] { { "normal" }, { "sp ace" }, { "qu?stion" }, { "unic¿de" },
|
||||
return new Object[][] { { "normal" }, { "sp ace" }, { "qu?stion" }, { "unic₪de" },
|
||||
{ "path/foo" }, { "colon:" }, { "asteri*k" }, { "quote\"" }, { "{great<r}" },
|
||||
{ "lesst>en" }, { "p|pe" } };
|
||||
}
|
||||
|
|
|
@ -73,7 +73,7 @@ public abstract class BaseHttpCommandExecutorServiceTest extends BaseJettyTest {
|
|||
|
||||
@DataProvider(name = "gets")
|
||||
public Object[][] createData() {
|
||||
return new Object[][] { { "object" }, { "/path" }, { "sp ace" }, { "unic¿de" },
|
||||
return new Object[][] { { "object" }, { "/path" }, { "sp ace" }, { "unic₪de" },
|
||||
{ "qu?stion" } };
|
||||
}
|
||||
|
||||
|
|
|
@ -1220,7 +1220,7 @@ public class RestAnnotationProcessorTest {
|
|||
|
||||
@DataProvider(name = "strings")
|
||||
public Object[][] createData() {
|
||||
return new Object[][] { { "apples" }, { "sp ace" }, { "unic¿de" }, { "qu?stion" } };
|
||||
return new Object[][] { { "apples" }, { "sp ace" }, { "unic₪de" }, { "qu?stion" } };
|
||||
}
|
||||
|
||||
@Test(dataProvider = "strings")
|
||||
|
|
Loading…
Reference in New Issue