diff options
author | Ingela Anderton Andin <[email protected]> | 2015-05-12 08:49:28 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2015-05-12 08:49:28 +0200 |
commit | d5e44d97189aaf406c36c8b17c2998669b9f4abf (patch) | |
tree | 27c29bf1d3fedf73fcc479cc98d0aa557763613b /lib/ssh/test | |
parent | 0d91ab8cf4900c58b7b5a20369b15f641b22a204 (diff) | |
parent | 4dde4fa2ac753223404a24bdb6a9e7323f04489e (diff) | |
download | otp-d5e44d97189aaf406c36c8b17c2998669b9f4abf.tar.gz otp-d5e44d97189aaf406c36c8b17c2998669b9f4abf.tar.bz2 otp-d5e44d97189aaf406c36c8b17c2998669b9f4abf.zip |
Merge branch 'ia/ssh/height'
* ia/ssh/height:
ssh: Fix typo
Diffstat (limited to 'lib/ssh/test')
-rw-r--r-- | lib/ssh/test/ssh_connection_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssh/test/ssh_connection_SUITE.erl b/lib/ssh/test/ssh_connection_SUITE.erl index 6fc09876ad..db51f65509 100644 --- a/lib/ssh/test/ssh_connection_SUITE.erl +++ b/lib/ssh/test/ssh_connection_SUITE.erl @@ -271,7 +271,7 @@ ptty_alloc(Config) when is_list(Config) -> {user_interaction, false}]), {ok, ChannelId} = ssh_connection:session_channel(ConnectionRef, infinity), success = ssh_connection:ptty_alloc(ConnectionRef, ChannelId, - [{term, os:getenv("TERM", ?DEFAULT_TERMINAL)}, {width, 70}, {high, 20}]), + [{term, os:getenv("TERM", ?DEFAULT_TERMINAL)}, {width, 70}, {height, 20}]), ssh:close(ConnectionRef). |