Skip to content

Commit

Permalink
removed build tool specific version parameter for apilevel23 test to …
Browse files Browse the repository at this point in the history
…see if that helps on travis
  • Loading branch information
mosabua committed Feb 11, 2016
1 parent e04422d commit ab09f65
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -99,8 +99,8 @@ public void validPlatformsAndApiLevels22() {
@Test
public void validPlatformsAndApiLevels23() {
// Remember to add further platforms to .travis.yml if you add more platforms here, otherwise ci build fails
final AndroidSdk sdk231 = new AndroidSdk( new File( sdkTestSupport.getEnv_ANDROID_HOME() ), "23", "23.0.1" );
Assert.assertTrue( sdk231.getAaptPath() != null && !sdk231.getAaptPath().equals( "" ) );
final AndroidSdk sdk23 = new AndroidSdk( new File( sdkTestSupport.getEnv_ANDROID_HOME() ), "23" );
Assert.assertTrue( sdk23.getAaptPath() != null && !sdk23.getAaptPath().equals( "" ) );
}

@Test(expected = InvalidSdkException.class)
Expand Down

0 comments on commit ab09f65

Please sign in to comment.