Skip to content
Snippets Groups Projects
Commit ab90b459 authored by Gurankash Singh's avatar Gurankash Singh
Browse files

Fixed typo in tearDown fn

parent e77a4cab
No related branches found
No related tags found
No related merge requests found
......@@ -13,7 +13,7 @@ class StatisticsTests(unittest.TestCase):
self.circles = [c1,c2,c3,c4,c5]
def tearDown(self):
self.circle = None
self.circles = None
def testAverageOfCircles(self):
self.assertAlmostEqual(average(self.circles), 2000000003.45, None, None, 0.1)
......@@ -25,4 +25,4 @@ class StatisticsTests(unittest.TestCase):
self.assertAlmostEqual(stdDev(self.circles), 3999999998.275, None, None, 0.1)
if __name__ == '__main__':
unittest.main()
\ No newline at end of file
unittest.main()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment