Merge branch 'fix-provider-test' into 'master'

Fix RepoProviderTest

Somehow RepoProviderTest was not targetting SDK 23

See merge request !363
This commit is contained in:
Dominik 2016-07-25 15:44:47 +00:00
commit b58138d4a2

View File

@ -20,7 +20,8 @@ import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull; import static org.junit.Assert.assertNull;
@Config(constants = BuildConfig.class, application = Application.class) // TODO: Use sdk=24 when Robolectric supports this
@Config(constants = BuildConfig.class, application = Application.class, sdk = 23)
@RunWith(RobolectricGradleTestRunner.class) @RunWith(RobolectricGradleTestRunner.class)
public class RepoProviderTest extends FDroidProviderTest { public class RepoProviderTest extends FDroidProviderTest {