Skip to content

Commit

Permalink
Github Actions: somehow the emulator has not enough memory.
Browse files Browse the repository at this point in the history
Fixes #599.
  • Loading branch information
dennisguse committed Apr 10, 2021
1 parent 8798f07 commit 4b1db4a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public void testLocationIterator_noAscending() {

@Test
public void testLocationIterator_largeTrack() {
testIterator(new Track.Id(1), 20000);
testIterator(new Track.Id(1), 20000 / 2);
}

private void testIterator(Track.Id trackId, int numPoints) {
Expand Down Expand Up @@ -1252,7 +1252,7 @@ private void testGetSensorStats_randomData(int totalPoints, boolean withStartSeg

@Test
public void testGetSensorStats_veryLongActivity12h() {
testGetSensorStats_randomData(43200, false);
testGetSensorStats_randomData(43200 / 4, false);
}

@Test
Expand Down

0 comments on commit 4b1db4a

Please sign in to comment.