fix(android): skip test on Windows that triggers androidx WebKit bug

Fixes: #16183
Test-bot: skip
This commit is contained in:
Marc Durdin 2026-07-02 09:16:17 +02:00
parent f5fd6ff6e0
commit fb761fc78f

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