Merge "Fix bindep.txt for python 3.11 job(Debian Bookworm)"

This commit is contained in:
Zuul 2023-11-29 16:35:53 +00:00 committed by Gerrit Code Review
commit bd681f379b
2 changed files with 7 additions and 5 deletions

View File

@ -12,11 +12,13 @@ libsqlite3-dev [platform:dpkg]
libssl-dev [platform:dpkg]
libxml2-dev [platform:dpkg]
libxslt1-dev [platform:dpkg]
mysql-client [platform:dpkg]
mysql-server [platform:dpkg]
mysql-client [platform:dpkg !platform:debian]
mariadb-client [platform:debian]
mysql-server [platform:dpkg !platform:debian]
mariadb-server [platform:debian]
postgresql-client [platform:dpkg]
postgresql-server-dev-all [platform:dpkg]
python-all-dev [platform:dpkg]
python-all-dev [platform:dpkg !platform:debian]
python3-all-dev [platform:dpkg]
cyrus-sasl-devel [platform:rpm]

View File

@ -4367,7 +4367,7 @@ class SAMLGenerationTests(test_v3.RestfulTestCase):
self.signed_assertion)
expected_log = (
'Error when signing assertion, reason: %s\n' % exception_msg)
self.assertEqual(expected_log, logger_fixture.output)
self.assertIn(expected_log, logger_fixture.output)
def test_sign_assertion_logs_message_if_xmlsec1_is_not_installed(self):
with mock.patch.object(subprocess, 'check_output') as co_mock:
@ -4383,7 +4383,7 @@ class SAMLGenerationTests(test_v3.RestfulTestCase):
expected_log = ('Unable to locate xmlsec1 binary on the system. '
'Check to make sure it is installed.\n')
self.assertEqual(expected_log, logger_fixture.output)
self.assertIn(expected_log, logger_fixture.output)
class IdPMetadataGenerationTests(test_v3.RestfulTestCase):