> @@ -454,7 +454,10 @@ public void blobNotFound() throws InterruptedException {
>
> @DataProvider(name = "delete")
> public Object[][] createData() {
> - return new Object[][] { { "normal" }, { "sp ace" }, { "qu?stion" }, {
> "unic₪de" }, { "path/foo" }, { "colon:" },
> + if(System.getProperty("os.name").contains("indows"))
> + return new Object[][] { { "normal" } };
> + else
> + return new Object[][] { { "normal" }, { "sp ace" }, { "qu?stion" },
> { "unic₪de" }, { "path/foo" }, { "colon:" },
How does this break on Windows, and is this something that should really be
fixed instead?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/168/files#r6781753