Skip to content

Commit e110ecb

Browse files
Fix minor issues
1 parent c3a512d commit e110ecb

File tree

5 files changed

+5
-6
lines changed

5 files changed

+5
-6
lines changed

deps/amqp10_client/BUILD.bazel

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ rabbitmq_integration_suite(
123123
"@activemq//:exec_dir",
124124
],
125125
test_env = {
126-
"ACTIVEMQ": "$TEST_SRCDIR/$TEST_WORKSPACE/external/activemq/bin/activemq"
126+
"ACTIVEMQ": "$TEST_SRCDIR/$TEST_WORKSPACE/external/activemq/bin/activemq"
127127
},
128128
deps = TEST_DEPS,
129129
)

deps/amqp10_client/Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,6 @@ $(ACTIVEMQ): \
6868
test/system_SUITE_data/apache-activemq-$(ACTIVEMQ_VERSION)-bin.tar.gz:
6969
$(gen_verbose) $(call core_http_get,$@,$(ACTIVEMQ_URL))
7070

71-
tests:: $(ACTIVEMQ)
71+
tests:: $(ACTIVEMQ)
7272

73-
ct ct-system: $(ACTIVEMQ)
73+
ct ct-system: $(ACTIVEMQ)

deps/amqp10_client/src/amqp10_client.erl

+1-1
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ attach_receiver_link(Session, Name, Source, SettleMode, Durability, Filter) ->
273273
%% caller using an amqp10_event of the following format:
274274
%% {amqp10_event, {link, LinkRef, attached | {detached, Why}}}
275275
-spec attach_receiver_link(pid(), binary(), binary(), snd_settle_mode(),
276-
terminus_durability(), filter(), properties()) ->
276+
terminus_durability(), filter(), properties()) ->
277277
{ok, link_ref()}.
278278
attach_receiver_link(Session, Name, Source, SettleMode, Durability, Filter,
279279
Properties)

deps/amqp10_client/test/ibmmq_ct_helpers.erl

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ teardown_steps() ->
2727

2828
init_config(Config) ->
2929
NodeConfig = [{tcp_port_amqp, 5672}],
30-
rabbit_ct_helpers:set_config(Config, [ {rmq_nodes, [NodeConfig]},
30+
rabbit_ct_helpers:set_config(Config, [ {rmq_nodes, [NodeConfig]},
3131
{rmq_hostname, "localhost"},
3232
{tcp_hostname_amqp, "localhost"},
3333
{sasl, {plain, <<"app">>, <<"passw0rd">>}} ]).

deps/amqp10_client/test/system_SUITE.erl

-1
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,6 @@ roundtrip(OpenConf, Args, DoNotAssertMessageProperties) ->
428428

429429
% ct:pal(?LOW_IMPORTANCE, "roundtrip message Out: ~tp~nIn: ~tp~n", [OutMsg, Msg]),
430430
ActualProps = amqp10_msg:properties(OutMsg),
431-
ct:log("Message Property Assertion. Skip properties: ~p", [DoNotAssertMessageProperties]),
432431
[ ?assertEqual(V, maps:get(K, ActualProps)) || K := V <- Props,
433432
not lists:member(K, DoNotAssertMessageProperties)],
434433

0 commit comments

Comments
 (0)