> @@ -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:" },

Style is off here too, and why "indows" instead of 
.toLower().contains("windows")?

This seems sloppy.

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/168/files#r6781812

Reply via email to