Skip to content

Commit

Permalink
chore(build): removed the instrumented test GitHub workflow pending a…
Browse files Browse the repository at this point in the history
… ticket to migrate them
  • Loading branch information
lemnik committed Apr 25, 2024
1 parent e20e1be commit 3bf0721
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 49 deletions.
49 changes: 0 additions & 49 deletions .github/workflows/build.yml

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.doNothing;
import static org.mockito.Mockito.times;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;
Expand Down Expand Up @@ -34,6 +36,7 @@ public class MemoryTrimTest {
@Test
public void onLowMemoryEvent() {
when(context.getApplicationContext()).thenReturn(context);
doNothing().when(context).registerComponentCallbacks(any());
Client client = new Client(context, BugsnagTestUtils.generateConfiguration());

// block until observer is registered
Expand Down

0 comments on commit 3bf0721

Please sign in to comment.