summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorOlle Lundberg <geek@nerd.sh>2013-02-28 12:36:03 +0100
committerOlle Lundberg <geek@nerd.sh>2013-02-28 12:36:03 +0100
commit38767982cd1a5181536a5f24f830e71933f7fb10 (patch)
tree6830116ce05e513709c6ae47b4683c4d8ab70305
parentf41fc8fd28c9fd7a41fd6c291d507a7a1b3cde56 (diff)
Fix broken test.
-rw-r--r--tests/test_util.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/test_util.py b/tests/test_util.py
index c4ad9d8a..efda9b2f 100644
--- a/tests/test_util.py
+++ b/tests/test_util.py
@@ -229,16 +229,16 @@ Host equals-delimited
ProxyCommand should perform interpolation on the value
"""
config = paramiko.util.parse_ssh_config(cStringIO.StringIO("""
-Host *
- Port 25
- ProxyCommand host %h port %p
-
Host specific
Port 37
ProxyCommand host %h port %p lol
Host portonly
Port 155
+
+Host *
+ Port 25
+ ProxyCommand host %h port %p
"""))
for host, val in (
('foo.com', "host foo.com port 25"),