mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix tests for facter and the ansible_facts API.
This commit is contained in:
parent
d3d26d0cd6
commit
cc579a8aa2
1 changed files with 2 additions and 2 deletions
|
@ -85,7 +85,7 @@ class TestRunner(unittest.TestCase):
|
|||
if not get_binary("facter"):
|
||||
raise SkipTest
|
||||
result = self._run('facter',[])
|
||||
assert "hostname" in result['ansible_facts']
|
||||
assert "hostname" in result
|
||||
|
||||
# temporarily disbabled since it occasionally hangs
|
||||
# ohai's fault, setup module doesn't actually run this
|
||||
|
@ -95,7 +95,7 @@ class TestRunner(unittest.TestCase):
|
|||
# if not get_binary("facter"):
|
||||
# raise SkipTest
|
||||
# result = self._run('ohai',[])
|
||||
# assert "hostname" in result['ansible_facts']
|
||||
# assert "hostname" in result
|
||||
|
||||
def test_copy(self):
|
||||
# test copy module, change trigger, etc
|
||||
|
|
Loading…
Reference in a new issue