summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Hellmann <doug@doughellmann.com>2015-06-18 22:26:17 +0000
committerDoug Hellmann <doug@doughellmann.com>2015-06-18 22:26:17 +0000
commitea8b9e7a160e0a154ceeedbacff3d4d15ce66a34 (patch)
tree16e0b04f13c4b331f0e7b6967ec8d88d1f4b83e0
parentfb022184af641b69febd71e686957359732fb9a3 (diff)
downloadoslo-middleware-ea8b9e7a160e0a154ceeedbacff3d4d15ce66a34.tar.gz
Drop use of 'oslo' namespace package
The Oslo libraries have moved all of their code out of the 'oslo' namespace package into per-library packages. The namespace package was retained during kilo for backwards compatibility, but will be removed by the liberty-2 milestone. This change removes the use of the namespace package, replacing it with the new package names. The patches in the libraries will be put on hold until application patches have landed, or L2, whichever comes first. At that point, new versions of the libraries without namespace packages will be released as a major version update. Please merge this patch, or an equivalent, before L2 to avoid problems with those library releases. Blueprint: remove-namespace-packages https://blueprints.launchpad.net/oslo-incubator/+spec/remove-namespace-packages Change-Id: I7344c794b73aca1e0dcad681a4c43e3a66dd2eb3
-rw-r--r--tests/test_sizelimit.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_sizelimit.py b/tests/test_sizelimit.py
index 0f26a49..37f5c69 100644
--- a/tests/test_sizelimit.py
+++ b/tests/test_sizelimit.py
@@ -16,8 +16,8 @@ from oslotest import base as test_base
import six
import webob
-from oslo.config import fixture as config
from oslo.middleware import sizelimit
+from oslo_config import fixture as config
class TestLimitingReader(test_base.BaseTestCase):