@@ -102,22 +102,22 @@ void main() {
102102
103103 testWithProfile ('cache 30-days totals' , fn: () async {
104104 await generateFake30DaysTotals ({'foo' : 70 , 'bar' : 105 , 'baz' : 140 });
105- expect (downloadCountsBackend.lookup30DayTotalCounts ('foo' ), isNull);
106- expect (downloadCountsBackend.lookup30DayTotalCounts ('bar' ), isNull);
107- expect (downloadCountsBackend.lookup30DayTotalCounts ('baz' ), isNull);
105+ expect (downloadCountsBackend.lookup30DaysTotalCounts ('foo' ), isNull);
106+ expect (downloadCountsBackend.lookup30DaysTotalCounts ('bar' ), isNull);
107+ expect (downloadCountsBackend.lookup30DaysTotalCounts ('baz' ), isNull);
108108
109109 await downloadCountsBackend.start ();
110- expect (downloadCountsBackend.lookup30DayTotalCounts ('foo' ), 70 );
111- expect (downloadCountsBackend.lookup30DayTotalCounts ('bar' ), 105 );
112- expect (downloadCountsBackend.lookup30DayTotalCounts ('baz' ), 140 );
113- expect (downloadCountsBackend.lookup30DayTotalCounts ('bax' ), isNull);
110+ expect (downloadCountsBackend.lookup30DaysTotalCounts ('foo' ), 70 );
111+ expect (downloadCountsBackend.lookup30DaysTotalCounts ('bar' ), 105 );
112+ expect (downloadCountsBackend.lookup30DaysTotalCounts ('baz' ), 140 );
113+ expect (downloadCountsBackend.lookup30DaysTotalCounts ('bax' ), isNull);
114114
115115 await generateFake30DaysTotals ({'foo' : 90 , 'bar' : 120 , 'baz' : 150 });
116116 await downloadCountsBackend.start ();
117- expect (downloadCountsBackend.lookup30DayTotalCounts ('foo' ), 90 );
118- expect (downloadCountsBackend.lookup30DayTotalCounts ('bar' ), 120 );
119- expect (downloadCountsBackend.lookup30DayTotalCounts ('baz' ), 150 );
120- expect (downloadCountsBackend.lookup30DayTotalCounts ('bax' ), isNull);
117+ expect (downloadCountsBackend.lookup30DaysTotalCounts ('foo' ), 90 );
118+ expect (downloadCountsBackend.lookup30DaysTotalCounts ('bar' ), 120 );
119+ expect (downloadCountsBackend.lookup30DaysTotalCounts ('baz' ), 150 );
120+ expect (downloadCountsBackend.lookup30DaysTotalCounts ('bax' ), isNull);
121121 });
122122 });
123123}
0 commit comments