Skip to content

Commit 50a4d40

Browse files
authored
Fix CI Lint (#380)
1 parent 28b753e commit 50a4d40

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ jobs:
8989
pip install -U setuptools
9090
sudo apt-get update -qq
9191
sudo apt-get install -qq swig python-dev libxml2-dev libxmlsec1-dev
92+
pip install --force-reinstall --no-binary lxml lxml
9293
make install-req
9394
make install-test
9495
- name: Run linters

tests/src/OneLogin/saml2_tests/response_test.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -761,8 +761,7 @@ def testGetEncryptedAttributes(self):
761761
Tests the get_attributes method of the OneLogin_Saml2_Response with an encrypted response
762762
"""
763763
settings = OneLogin_Saml2_Settings(self.loadSettingsJSON('settings8.json'))
764-
xml = self.file_contents(join(self.data_path, 'responses',
765-
'signed_message_encrypted_assertion2.xml.base64'))
764+
xml = self.file_contents(join(self.data_path, 'responses', 'signed_message_encrypted_assertion2.xml.base64'))
766765
response = OneLogin_Saml2_Response(settings, xml)
767766
self.assertEqual({
768767
'uid': ['smartin'],

0 commit comments

Comments
 (0)