summaryrefslogtreecommitdiff
path: root/pbr/tests/test_packaging.py
diff options
context:
space:
mode:
Diffstat (limited to 'pbr/tests/test_packaging.py')
-rw-r--r--pbr/tests/test_packaging.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pbr/tests/test_packaging.py b/pbr/tests/test_packaging.py
index 81701d1..c6b2e7d 100644
--- a/pbr/tests/test_packaging.py
+++ b/pbr/tests/test_packaging.py
@@ -454,8 +454,8 @@ class TestRequirementParsing(base.BaseTestCase):
# anonymous section instead of the empty string. Weird.
expected_requirements = {
None: ['bar'],
- ":python_version=='2.6'": ['quux<1.0'],
- "test:python_version=='2.7'": ['baz>3.2'],
+ ":(python_version=='2.6')": ['quux<1.0'],
+ "test:(python_version=='2.7')": ['baz>3.2'],
"test": ['foo']
}
setup_py = os.path.join(tempdir, 'setup.py')