summaryrefslogtreecommitdiff
path: root/dev-python/python-cinderclient/files
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-03-03 22:21:55 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-03-03 22:21:55 +0000
commit0949a35b020584a14ff753275f142f2d9b476a18 (patch)
treeb8579c95b05b3e1263e454b247e05bf39a04d975 /dev-python/python-cinderclient/files
parente395226626082e9bdb6e560ead7a5cff3f8de063 (diff)
downloadbaldeagleos-repo-0949a35b020584a14ff753275f142f2d9b476a18.tar.gz
baldeagleos-repo-0949a35b020584a14ff753275f142f2d9b476a18.tar.xz
baldeagleos-repo-0949a35b020584a14ff753275f142f2d9b476a18.zip
Adding metadata
Diffstat (limited to 'dev-python/python-cinderclient/files')
-rw-r--r--dev-python/python-cinderclient/files/python-cinderclient-9.7.0-py313.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/dev-python/python-cinderclient/files/python-cinderclient-9.7.0-py313.patch b/dev-python/python-cinderclient/files/python-cinderclient-9.7.0-py313.patch
deleted file mode 100644
index 0cfc8df62cd5..000000000000
--- a/dev-python/python-cinderclient/files/python-cinderclient-9.7.0-py313.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-diff --git a/cinderclient/tests/unit/test_shell.py b/cinderclient/tests/unit/test_shell.py
-index c5d64af..6b67a8e 100644
---- a/cinderclient/tests/unit/test_shell.py
-+++ b/cinderclient/tests/unit/test_shell.py
-@@ -437,12 +437,14 @@
- expected_help = ("help message (Supported by API versions "
- "%(start)s - %(end)s)") % {
- 'start': '3.0', 'end': '3.3'}
-- expected_desc = ("help message\n\n "
-- "This will not show up in help message\n ")
-+ self.assertIn('help message',
-+ mock_add_parser.call_args_list[0][1]['description'])
-+ self.assertIn('This will not show up in help message',
-+ mock_add_parser.call_args_list[0][1]['description'])
- mock_add_parser.assert_any_call(
- 'fake-action',
- help=expected_help,
-- description=expected_desc,
-+ description=mock.ANY,
- add_help=False,
- formatter_class=cinderclient.shell.OpenStackHelpFormatter)
-