James Wald

Results 12 comments of James Wald

This also happens in `ActivityScenario.close()` after a test manually calls `finish()` on the activity.

That worked for me. Looks like this issue could be closed?

Perhaps another service could monitor the processor load and temperatures and enable `DisableTurboBoost` only when needed. This might allow speed stepping to continue to save energy while the CPU is...

As a temporary workaround you can set your system date back to `2021-04-07` and run `brew install encfs` again: ``` on_macos do disable! date: "2021-04-08", because: "requires FUSE" end ```...

Github hosted actions here. When the action fails with this error it fails across all active runs around the same time. About 30 minutes ago 3 runs failed simultaneously. Retried...

I'm seeing this when using SQLiteOpenHelper as well. The first transaction works fine but the second transaction fails with this exception when SQLiteDatabase.beginTransaction() is called.

In my case the problem was caused by instantiating SQLiteOpenHelper as a singleton which was shared across multiple calls to ContentProvider.onCreate(). I removed this optimization for Robolectric tests and always...

I don't think this issue is specific to `com.nhaarman.mockitokotlin2:mockito-kotlin` because the following test case reproduces the failure with only `org.mockito:mockito-inline` and `org.robolectric:robolectric`: ``` package com.example.test import androidx.test.ext.junit.runners.AndroidJUnit4 import org.junit.Test import...

I reported this issue to Robolectric with https://github.com/robolectric/robolectric/issues/5076. I haven't been able to rule out Mockito but that is working fine on both JVM (without Robolectric) and Android devices.

This is still an issue in Robolectric 4.5.1. The workaround described in https://github.com/robolectric/robolectric/issues/5110#issuecomment-501744719 worked for me.