diff --git a/debian/patches/series b/debian/patches/series index 2c1071aca3b573751c75521caef2daa390006142..f90bca9bc343de36431856f1957ecf1983561922 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -1,2 +1 @@ -test-config-dir-doesnt-exist.patch do-not-run-toplevel-tests.patch diff --git a/debian/patches/test-config-dir-doesnt-exist.patch b/debian/patches/test-config-dir-doesnt-exist.patch deleted file mode 100644 index cc7d081e7db8befff5350e99548f35eb66c48c6b..0000000000000000000000000000000000000000 --- a/debian/patches/test-config-dir-doesnt-exist.patch +++ /dev/null @@ -1,16 +0,0 @@ -Description: Ensure directory doesn't exist for test_config_dir_doesnt_exist(). -Author: Corey Bryant -Forwarded: https://review.openstack.org/365153 - ---- a/oslo_config/tests/test_cfg.py -+++ b/oslo_config/tests/test_cfg.py -@@ -2909,7 +2909,8 @@ - self.assertEqual('whistle-11', self.conf.snafu.bell) - - def test_config_dir_doesnt_exist(self): -- tmpdir = '/tmp/foo' -+ tmpdir = tempfile.mkdtemp() -+ os.rmdir(tmpdir) - - self.assertRaises(cfg.ConfigDirNotFoundError, - self.conf,