Skip to content

Commit

Permalink
Delete skipUnless after space
Browse files Browse the repository at this point in the history
  • Loading branch information
rruuaanng committed Sep 24, 2024
1 parent ade11c7 commit 9d6d756
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/test/test_os.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def test_getcwd(self):
cwd = os.getcwd()
self.assertIsInstance(cwd, str)

@unittest.skipUnless(hasattr(os, 'getdtablesize'), 'need os.getdtablesize()')
@unittest.skipUnless(hasattr(os, 'getdtablesize'), 'need os.getdtablesize()')
def test_getdtablesize(self):
size = os.getdtablesize()
self.assertIsInstance(size, int)
Expand Down

0 comments on commit 9d6d756

Please # to comment.