Skip to content

Commit f8e13c0

Browse files
Fix the previous fix on Linux.
1 parent a73d99c commit f8e13c0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/test/test_inspect/test_inspect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5473,7 +5473,7 @@ def test_time_module_has_signatures(self):
54735473
if os.name == 'posix':
54745474
no_signature |= {'clock_getres', 'clock_settime', 'clock_settime_ns'}
54755475
for name in ['pthread_getcpuclockid']:
5476-
if hasattr(os, name):
5476+
if hasattr(time, name):
54775477
no_signature.add(name)
54785478
self._test_module_has_signatures(time, no_signature)
54795479

0 commit comments

Comments
 (0)