From 13ff24582c99dfb439b1af7295b401415e7eb05b Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Mon, 22 Jan 2018 18:32:50 +0100 Subject: bpo-32593: Drop FreeBSD 9 and older support (#5232) Drop support of FreeBSD 9 and older. --- Lib/test/test_resource.py | 1 - 1 file changed, 1 deletion(-) (limited to 'Lib/test/test_resource.py') diff --git a/Lib/test/test_resource.py b/Lib/test/test_resource.py index cc9c57024d..4b852789be 100644 --- a/Lib/test/test_resource.py +++ b/Lib/test/test_resource.py @@ -138,7 +138,6 @@ class ResourceTest(unittest.TestCase): with contextlib.suppress(AttributeError): self.assertIsInstance(getattr(resource, 'RLIMIT_' + attr), int) - @support.requires_freebsd_version(9) def test_freebsd_contants(self): for attr in ['SWAP', 'SBSIZE', 'NPTS']: with contextlib.suppress(AttributeError): -- cgit v1.2.1