summaryrefslogtreecommitdiff
path: root/psutil/tests/test_windows.py
diff options
context:
space:
mode:
Diffstat (limited to 'psutil/tests/test_windows.py')
-rwxr-xr-xpsutil/tests/test_windows.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/psutil/tests/test_windows.py b/psutil/tests/test_windows.py
index b89c67a9..3bf45807 100755
--- a/psutil/tests/test_windows.py
+++ b/psutil/tests/test_windows.py
@@ -167,7 +167,7 @@ class TestSystemAPIs(WindowsTestCase):
self.assertEqual(usage.total, int(wmi_part.Size))
wmi_free = int(wmi_part.FreeSpace)
self.assertEqual(usage.free, wmi_free)
- # 10 MB tollerance
+ # 10 MB tolerance
if abs(usage.free - wmi_free) > 10 * 1024 * 1024:
raise self.fail("psutil=%s, wmi=%s" % (
usage.free, wmi_free))