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.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/psutil/tests/test_windows.py b/psutil/tests/test_windows.py
index 2b466382..07f1d796 100755
--- a/psutil/tests/test_windows.py
+++ b/psutil/tests/test_windows.py
@@ -88,8 +88,8 @@ class TestSystemAPIs(unittest.TestCase):
def test_cpu_freq(self):
w = wmi.WMI()
proc = w.Win32_Processor()[0]
- self.assertEqual(proc.CurrentClockSpeed, psutil.cpu_freq()[0].curr)
- self.assertEqual(proc.MaxClockSpeed, psutil.cpu_freq()[0].max)
+ self.assertEqual(proc.CurrentClockSpeed, psutil.cpu_freq().current)
+ self.assertEqual(proc.MaxClockSpeed, psutil.cpu_freq().max)
def test_total_phymem(self):
w = wmi.WMI().Win32_ComputerSystem()[0]