diff options
author | Björn Gustavsson <[email protected]> | 2011-09-27 10:43:07 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2011-09-27 10:43:07 +0200 |
commit | 028750246b040fa9e517aafe8f7bfe4da49c75b5 (patch) | |
tree | 8dabe7b8281cb330505a1602516ef587fecafcbe /erts | |
parent | ab017dce9a19f2fcd470c85f562122aac161b466 (diff) | |
download | otp-028750246b040fa9e517aafe8f7bfe4da49c75b5.tar.gz otp-028750246b040fa9e517aafe8f7bfe4da49c75b5.tar.bz2 otp-028750246b040fa9e517aafe8f7bfe4da49c75b5.zip |
distribution_SUITE: Use unique slave node names
bad_dist_ext_connection_id/1 used the same names for the slave
nodes as bad_dist_ext_receive/1, which would cause it to fail if
bad_dist_ext_receive/1 failed.
Diffstat (limited to 'erts')
-rw-r--r-- | erts/emulator/test/distribution_SUITE.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/erts/emulator/test/distribution_SUITE.erl b/erts/emulator/test/distribution_SUITE.erl index e4af5c00a6..3719593bd3 100644 --- a/erts/emulator/test/distribution_SUITE.erl +++ b/erts/emulator/test/distribution_SUITE.erl @@ -1597,8 +1597,8 @@ bad_dist_ext_control(Config) when is_list(Config) -> ?line stop_node(Victim). bad_dist_ext_connection_id(Config) when is_list(Config) -> - ?line {ok, Offender} = start_node(bad_dist_ext_receive_offender), - ?line {ok, Victim} = start_node(bad_dist_ext_receive_victim), + ?line {ok, Offender} = start_node(bad_dist_ext_connection_id_offender), + ?line {ok, Victim} = start_node(bad_dist_ext_connection_id_victim), ?line start_node_monitors([Offender,Victim]), ?line Parent = self(), |