Remove test for rabbit_log:log/4

This commit is contained in:
Michal Kuratczyk 2025-07-15 23:21:52 +02:00
parent bcc062203d
commit e459859a40
No known key found for this signature in database
1 changed files with 0 additions and 11 deletions

View File

@ -69,16 +69,5 @@ defmodule LogLocationCommandTest do
log_message = "checking the default log file when checking all" log_message = "checking the default log file when checking all"
:rpc.call(get_rabbit_hostname(), :logger, :error, [to_charlist(log_message)]) :rpc.call(get_rabbit_hostname(), :logger, :error, [to_charlist(log_message)])
wait_for_log_message(log_message, logfile) wait_for_log_message(log_message, logfile)
log_message_upgrade = "checking the upgrade log file when checking all"
:rpc.call(get_rabbit_hostname(), :logger, :log, [
:upgrade,
:error,
to_charlist(log_message_upgrade),
[]
])
wait_for_log_message(log_message_upgrade, logfile)
end end
end end