Skip to content

Commit

Permalink
Fix golden date
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonas-Sander committed Feb 26, 2024
1 parent f1d5fb2 commit a26d284
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ void main() {
final dt = createDialogTester(tester);
dt.addCourse(courseWith(id: 'fooId', name: 'Foo course'));

await withClock(Clock.fixed(DateTime(2022, 1, 1)), () async {
await withClock(Clock.fixed(DateTime(2024, 2, 22)), () async {
await dt.pumpDialog(
isExam: testConfig.isExam,
theme: testConfig.theme.data,
Expand All @@ -77,7 +77,7 @@ void main() {
final dt = createDialogTester(tester);
dt.addCourse(courseWith(id: 'fooId', name: 'Foo course'));

await withClock(Clock.fixed(DateTime(2022, 1, 1)), () async {
await withClock(Clock.fixed(DateTime(2024, 2, 22)), () async {
await dt.pumpDialog(
isExam: testConfig.isExam,
theme: testConfig.theme.data,
Expand Down Expand Up @@ -109,7 +109,7 @@ void main() {
(tester) async {
final dt = createDialogTester(tester);

await withClock(Clock.fixed(DateTime(2022, 1, 1)), () async {
await withClock(Clock.fixed(DateTime(2024, 2, 22)), () async {
await dt.pumpDialog(
isExam: testConfig.isExam,
theme: testConfig.theme.data,
Expand Down

0 comments on commit a26d284

Please sign in to comment.