We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d4d02e commit 663a3d6Copy full SHA for 663a3d6
python-stdlib/unittest/test_unittest.py
@@ -37,7 +37,7 @@ def test_AlmostEqual(self):
37
with self.assertRaises(AssertionError):
38
self.assertNotAlmostEqual(float("inf"), float("inf"))
39
40
- def test_AmostEqualWithDelta(self):
+ def test_AlmostEqualWithDelta(self):
41
self.assertAlmostEqual(1.1, 1.0, delta=0.5)
42
self.assertAlmostEqual(1.0, 1.1, delta=0.5)
43
self.assertNotAlmostEqual(1.1, 1.0, delta=0.05)
0 commit comments