Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
opoplawski committed Jan 4, 2024
1 parent af58876 commit 1412356
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/plugins/modules/test_pfsense_openvpn_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def setUp(self):

self.mock_run_command = patch('ansible.module_utils.basic.AnsibleModule.run_command')
self.run_command = self.mock_run_command.start()
self.run_command.return_value = (0, base64.b64decode(TLSKEY), '')
self.run_command.return_value = (0, base64.b64decode(TLSKEY.encode()).decode(), '')

def tearDown(self):
""" mocking down """
Expand Down

0 comments on commit 1412356

Please sign in to comment.