From 1b0c9dbea9175a099e35e0b380f021e1439e8a57 Mon Sep 17 00:00:00 2001 From: Alexandros Afentoulis Date: Wed, 18 Jul 2018 18:32:14 +0300 Subject: [PATCH] Remove test-config-dir-doesnt-exist.patch Said patch is already included in original tarball, so cannot be applied. --- debian/patches/series | 1 - .../patches/test-config-dir-doesnt-exist.patch | 16 ---------------- 2 files changed, 17 deletions(-) delete mode 100644 debian/patches/test-config-dir-doesnt-exist.patch diff --git a/debian/patches/series b/debian/patches/series index 2c1071a..f90bca9 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 cc7d081..0000000 --- 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, -- GitLab