Skip to content

Commit

Permalink
Fix password
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcialRosales committed Aug 2, 2024
1 parent 15ae5ac commit a1d8d6a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion deps/amqp10_client/test/ibmmq_ct_helpers.erl
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ init_config(Config) ->
rabbit_ct_helpers:set_config(Config, [ {rmq_nodes, [NodeConfig]},
{rmq_hostname, "localhost"},
{tcp_hostname_amqp, "localhost"},
{sasl, {plain, <<"app">>, <<"passw10rd">>}} ]).
{sasl, {plain, <<"app">>, <<"passw0rd">>}} ]).

start_ibmmq_server(Config) ->
IBMmqCmd = filename:join([?config(data_dir, Config), "ibmmq_runner"]),
Expand Down
4 changes: 2 additions & 2 deletions deps/amqp10_client/test/system_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ groups() ->
{activemq, [], shared()},
{ibmmq, [], [
open_close_connection,
open_connection_plain_sasl_failure,
basic_roundtrip_with_sender_and_receiver_capabilities,
basic_roundtrip_with_non_binary_capability
]},
Expand Down Expand Up @@ -365,7 +364,8 @@ basic_roundtrip_with_sender_and_receiver_capabilities(Config) ->
{sender_capabilities, <<"queue">>},
{receiver_capabilities, <<"queue">>},
{message_annotations, #{}}
], [creation_time]).
], [creation_time]),
timer:sleep(20000).

basic_roundtrip_with_non_binary_capability(Config) ->
application:start(sasl),
Expand Down

0 comments on commit a1d8d6a

Please sign in to comment.