Skip to content

Commit 1a8c5c0

Browse files
mix format
1 parent 5f3baf3 commit 1a8c5c0

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

deps/rabbitmq_cli/lib/rabbitmqctl.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -628,7 +628,7 @@ defmodule RabbitMQCtl do
628628
## {:fun, fun} - run a custom function to enable distribution.
629629
## custom mode is usefult for commands which should have specific node name.
630630
## Runs code if distribution is successful, or not needed.
631-
@spec maybe_with_distribution(module(), options(), (-> command_result())) :: command_result()
631+
@spec maybe_with_distribution(module(), options(), (() -> command_result())) :: command_result()
632632
defp maybe_with_distribution(command, options, code) do
633633
try do
634634
maybe_with_distribution_without_catch(command, options, code)

deps/rabbitmq_cli/test/ctl/deactivate_disk_free_space_monitoring_command_test.exs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ defmodule DeactivateDiskFreeSpaceMonitoringCommandTest do
3434
end
3535

3636
test "banner", context do
37-
assert @command.banner([], context[:opts]) =~ ~r/Deactivating free disk space monitoring on node/
37+
assert @command.banner([], context[:opts]) =~
38+
~r/Deactivating free disk space monitoring on node/
3839
end
3940
end

0 commit comments

Comments
 (0)