diff options
author | Björn Gustavsson <[email protected]> | 2017-06-12 15:51:37 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2017-06-12 16:31:07 +0200 |
commit | c7b5246935a924db24610edf8201c5a553206f87 (patch) | |
tree | 4d07a3ed3e3695ac4e2e85adb4f3d32c479627ef /erts | |
parent | 6b25d2451a870a13965e0b21dd99efe115db4c8a (diff) | |
download | otp-c7b5246935a924db24610edf8201c5a553206f87.tar.gz otp-c7b5246935a924db24610edf8201c5a553206f87.tar.bz2 otp-c7b5246935a924db24610edf8201c5a553206f87.zip |
busy_port_SUITE: Eliminate warnings for unused variables
Diffstat (limited to 'erts')
-rw-r--r-- | erts/emulator/test/busy_port_SUITE.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/erts/emulator/test/busy_port_SUITE.erl b/erts/emulator/test/busy_port_SUITE.erl index ce643872e5..b1600c31bb 100644 --- a/erts/emulator/test/busy_port_SUITE.erl +++ b/erts/emulator/test/busy_port_SUITE.erl @@ -135,7 +135,7 @@ message_order(Config) when is_list(Config) -> ok. send_to_busy_1(Parent) -> - {Owner, Slave} = get_slave(), + {_Owner, Slave} = get_slave(), (catch port_command(Slave, "set_me_busy")), (catch port_command(Slave, "hello")), (catch port_command(Slave, "hello again")), @@ -344,7 +344,7 @@ multiple_writers(Config) when is_list(Config) -> ok. quick_writer() -> - {Owner, Port} = get_slave(), + {_Owner, Port} = get_slave(), (catch port_command(Port, "port to busy")), (catch port_command(Port, "lock me")), ok. |