Skip to content

Commit

Permalink
Fixed Search Page API (yfinance API not working properly)
Browse files Browse the repository at this point in the history
  • Loading branch information
Saptak625 committed Mar 12, 2023
1 parent ca0e9b0 commit 5bb61d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_pymeasurement.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,6 @@ def test_average_measurements(self):
m3 = Measurement.fromStr("4.0 +/- 0.1 m")
m4 = Measurement.average([m1, m2, m3])
self.assertEqual(m4.sample, SigFig("3.0"))
self.assertEqual(m4.uncertainty, SigFig("0.58"))
self.assertEqual(m4.uncertainty, SigFig("0.6"))
self.assertEqual(m4.units, "m")
self.assertEqual(str(m4), "3.0 +/- 0.6 m")

0 comments on commit 5bb61d9

Please sign in to comment.