File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
gradle-tests/orchestrator
src/androidTest/java/androidx/test/gradletests/orchestrator Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,8 @@ android {
1414 compileSdk rootProject. ext. compileSdk
1515
1616 defaultConfig {
17- minSdk rootProject. ext. minSdk
17+ // test with whitespace requires min sdk 30
18+ minSdk 30
1819 targetSdk rootProject. ext. targetSdk
1920
2021 testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
Original file line number Diff line number Diff line change @@ -37,6 +37,11 @@ class OrchestratorTest {
3737 verifyStorageClearedThenAdd()
3838 }
3939
40+ @Test
41+ fun `test with whitespace` () {
42+
43+ }
44+
4045 private fun verifyStorageClearedThenAdd () {
4146 val savedFile =
4247 File (ApplicationProvider .getApplicationContext<Context >().filesDir, " myfile.txt" )
You can’t perform that action at this time.
0 commit comments