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:
Marc Durdin 2026-07-02 21:42:27 +10:00 committed by GitHub
commit 522018b6ef
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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);