Skip to content

Commit

Permalink
Update anki submodule for undo/scheduling fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dae authored and mikehardy committed Jul 19, 2022
1 parent ba74873 commit 613db13
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@

import java.util.concurrent.TimeUnit;

import anki.ankidroid.SchedTimingTodayLegacyRequest;
import anki.scheduler.SchedTimingTodayResponse;

import static org.hamcrest.MatcherAssert.assertThat;
Expand Down Expand Up @@ -64,7 +65,7 @@ public void testBackendException() {
@Test
public void schedTimingTodayCall() {
Backend backend = getBackend("initial_version_2_12_1.anki2");
SchedTimingTodayResponse ret = backend.schedTimingTodayLegacy(1655258084, 0, 1655258084, 0, 0);
SchedTimingTodayResponse ret = backend.schedTimingTodayLegacy(SchedTimingTodayLegacyRequest.getDefaultInstance());
int elapsed = ret.getDaysElapsed();
long nextDayAt = ret.getNextDayAt();
}
Expand Down

0 comments on commit 613db13

Please sign in to comment.