Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/scripts/test_baseVagrantSetup.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ def test_configures_system_for_vagrant(container_per_test):

# check the sshd config
sshd_config = container_per_test.connection.run_expect([0], "sshd -T").stdout
assert "UseDNS no".lower() in sshd_config
assert "GSSAPIAuthentication no".lower() in sshd_config
assert "UseDNS no".lower() in sshd_config.lower()
assert "GSSAPIAuthentication no".lower() in sshd_config.lower()

# check that the shared /vagrant folder is present and has the correct permissions
vagrant_shared_dir = container_per_test.connection.file("/vagrant")
Expand Down
Loading