blob: 35388b6d40960a8fa8b93ad38b4a6da207959479 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/usr/bin/env python3
def test_ssh_thread():
"""Test to see if ssh connections are attempted the proper amount of times"""
from pharosvalidator.server import ssh_thread
ssh_thread("127.0.0.1", "0.0.0.0", "1", 10)
|