Skip to content
This repository was archived by the owner on Jan 6, 2023. It is now read-only.

Commit b6d0fa7

Browse files
authored
molecule_vagrant/test/functional/test_func.py: Fix run_command import (#85)
Molecule 3.2.0a1 moved run_command to molecule.util, so update the test code to reflect that. Signed-off-by: Arnaud Patard <[email protected]>
1 parent d96a2b7 commit b6d0fa7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

molecule_vagrant/test/functional/test_func.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@
2424

2525
from molecule import util
2626
from molecule import logger
27-
from molecule.test.conftest import run_command, change_dir_to
27+
from molecule.util import run_command
28+
from molecule.test.conftest import change_dir_to
2829

2930
LOG = logger.get_logger(__name__)
3031

0 commit comments

Comments
 (0)