File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -53,10 +53,10 @@ public async Task GetHistoricalDailyPricesAsync()
5353
5454 var split = result . Data . Historical . First ( data => data . Date == "2021-06-04" ) ;
5555
56- Assert . Equal ( 125.89 , split . Close ) ;
57- Assert . Equal ( 124.07 , split . Open ) ;
58- Assert . Equal ( 126.16 , split . High ) ;
59- Assert . Equal ( 123.85 , split . Low ) ;
56+ Assert . Equal ( 125.89 , split . Close , 2 ) ;
57+ Assert . Equal ( 124.07 , split . Open , 2 ) ;
58+ Assert . Equal ( 126.16 , split . High , 2 ) ;
59+ Assert . Equal ( 123.85 , split . Low , 2 ) ;
6060 }
6161
6262 [ Fact ]
@@ -68,7 +68,7 @@ public async Task GetHistoricalDailyPricesForLineChartAsync()
6868
6969 var split = result . Data . Historical . First ( data => data . Date == "2021-06-04" ) ;
7070
71- Assert . Equal ( 125.89 , split . Close ) ;
71+ Assert . Equal ( 125.89 , split . Close , 2 ) ;
7272 }
7373 }
7474}
You can’t perform that action at this time.
0 commit comments