Skip to content

Commit 192f9da

Browse files
committed
fixes to pass pylint type items
1 parent aa9efde commit 192f9da

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

end-to-end-tests/tests.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
1111

1212

1313
class TestE2E(unittest.TestCase):
14-
def test_send_file(self):
14+
def test_send_file(self) -> None:
1515
sysrsync.run(source="end-to-end-tests/test-cases/test_file",
1616
destination="/tmp/target_test_file",
1717
destination_ssh="test@openssh-server",
1818
private_key="end-to-end-tests/keys/test-key",
1919
rsh_port=2222,
2020
strict_host_key_checking=False)
2121

22-
def test_send_file_with_spaces(self):
22+
def test_send_file_with_spaces(self) -> None:
2323
sysrsync.run(source="end-to-end-tests/test-cases/file with spaces",
2424
destination="/tmp/target_test_file",
2525
destination_ssh="test@openssh-server",

0 commit comments

Comments
 (0)