File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
e2e/cypress/integration/tests Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ context('Increment steppers', () => {
30
30
cy . get ( 'input.st-al' ) . eq ( 1 )
31
31
. should ( 'has.value' , '15.1' ) ;
32
32
33
- cy . contains ( 'Hospitalized Admissions peaks at 303 ' ) ;
33
+ cy . contains ( 'Hospitalized Admissions peaks at 302 ' ) ;
34
34
} ) ;
35
35
36
36
it ( 'Increment doubling time' , ( ) => {
@@ -44,6 +44,6 @@ context('Increment steppers', () => {
44
44
cy . get ( 'input.st-al' ) . eq ( 3 )
45
45
. should ( 'has.value' , '4.25' ) ;
46
46
47
- cy . contains ( 'Hospitalized Admissions peaks at 273 ' ) ;
47
+ cy . contains ( 'Hospitalized Admissions peaks at 274 ' ) ;
48
48
} ) ;
49
49
} ) ;
Original file line number Diff line number Diff line change @@ -157,5 +157,6 @@ def build_table(
157
157
modulo : int = 1 ,
158
158
) -> pd .DataFrame :
159
159
table_df = df [np .mod (df .day , modulo ) == 0 ].copy ()
160
+ table_df .date = table_df .date .dt .strftime (DATE_FORMAT )
160
161
table_df .rename (labels )
161
162
return table_df
You can’t perform that action at this time.
0 commit comments