We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f3f21f commit a4a3789Copy full SHA for a4a3789
molecule/default/tests/test_default.py
@@ -16,10 +16,10 @@ def test_hosts_file(host):
16
17
18
def test_python(host):
19
- f = host.file('/opt/Python-3.10/bin/python3.10')
+ f = host.file('/opt/Python-3.13/bin/python3.13')
20
assert f.exists
21
assert f.user == 'python'
22
assert f.group == 'python'
23
24
- assert '3.10.0' in host.check_output(
25
- '/opt/Python-3.10/bin/python3.10 --version')
+ assert '3.13.0' in host.check_output(
+ '/opt/Python-3.13/bin/python3.13 --version')
0 commit comments