Skip to content

Commit

Permalink
fixed a couple of tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nahumtimerman committed Apr 21, 2021
1 parent 6641068 commit 96db16d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package/tests/test_ansible_shell.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ def test_download_playbook_without_auth(self):

self._execute_playbook()

self.downloader.get.assert_called_once_with('someurl', Any(), Any(), Any())
self.downloader.get.assert_called_once_with('someurl', Any(), Any(), Any(), True)

def test_download_playbook_with_auth(self):
self.conf.playbook_repo.url = 'someurl'
Expand All @@ -209,7 +209,7 @@ def test_download_playbook_with_auth(self):

self.downloader.get.assert_called_once_with('someurl',
Any(lambda x: x.username == 'user' and x.password == 'pass'), Any(),
Any())
Any(), True)

# Playbook Executor

Expand Down

0 comments on commit 96db16d

Please sign in to comment.