Skip to content

Commit

Permalink
Disable memory tests (#2480)
Browse files Browse the repository at this point in the history
Suspected culprit of #2478
based on a Gradle build scan.
  • Loading branch information
TimvdLippe committed Nov 19, 2021
1 parent d373357 commit b72a0a5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/test/java/org/mockito/PrematureGarbageCollectionTest.java
Expand Up @@ -4,8 +4,10 @@
*/
package org.mockito;

import org.junit.Ignore;
import org.junit.Test;

@Ignore("https://github.com/mockito/mockito/issues/2478")
public class PrematureGarbageCollectionTest {

@Test
Expand Down
Expand Up @@ -10,8 +10,10 @@
import static org.mockito.Mockito.when;

import org.junit.Assume;
import org.junit.Ignore;
import org.junit.Test;

@Ignore("https://github.com/mockito/mockito/issues/2478")
public class ShouldNotStarveMemoryOnLargeStackTraceInvocationsTest {

private static final int STACK_TRACE_DEPTH = 1000;
Expand Down

0 comments on commit b72a0a5

Please sign in to comment.