mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 00:15:32 +00:00
Merge pull request #16184 from keymanapp/fix/android/16183-skip-test-on-windows
fix(android): skip test on Windows that triggers androidx WebKit bug
This commit is contained in:
commit
522018b6ef
1 changed files with 11 additions and 0 deletions
|
|
@ -119,6 +119,11 @@ public class KMManagerTest {
|
|||
*/
|
||||
@Test
|
||||
public void create_newKeyboardsList() {
|
||||
if(File.separatorChar != '/') {
|
||||
Log.w(TAG, "create_newKeyboardsList skipped due to #16183");
|
||||
return;
|
||||
}
|
||||
|
||||
loadOldKeyboardsList();
|
||||
dat_list = new ArrayList<HashMap<String, String>>();
|
||||
|
||||
|
|
@ -190,6 +195,12 @@ public class KMManagerTest {
|
|||
|
||||
@Test
|
||||
public void test_updateOldKeyboardsList() {
|
||||
// #16183
|
||||
if(File.separatorChar != '/') {
|
||||
Log.w(TAG, "test_updateOldKeyboardsList skipped due to #16183");
|
||||
return;
|
||||
}
|
||||
|
||||
loadOldKeyboardsList();
|
||||
Assert.assertNotNull(dat_list);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue