diff --git a/lib/vagrant/ui.rb b/lib/vagrant/ui.rb index bae5ca3d1..75802352c 100644 --- a/lib/vagrant/ui.rb +++ b/lib/vagrant/ui.rb @@ -280,8 +280,9 @@ module Vagrant opts[:bold] = #{method.inspect} != :detail && \ #{method.inspect} != :ask end - - opts[:target] = @prefix + if !opts.key?(:target) + opts[:target] = @prefix + end @ui.#{method}(format_message(#{method.inspect}, message, **opts), *args, **opts) end CODE diff --git a/test/unit/vagrant/ui_test.rb b/test/unit/vagrant/ui_test.rb index 61bfe7270..8ac03437e 100644 --- a/test/unit/vagrant/ui_test.rb +++ b/test/unit/vagrant/ui_test.rb @@ -313,7 +313,7 @@ describe Vagrant::UI::Prefixed do describe "#ask" do it "does not request bolding" do - expect(ui).to receive(:ask).with(" #{prefix}: foo", bold: false) + expect(ui).to receive(:ask).with(" #{prefix}: foo", bold: false, target: prefix) subject.ask("foo") end end @@ -325,12 +325,13 @@ describe Vagrant::UI::Prefixed do end it "prefixes every line" do - expect(ui).to receive(:detail).with(" #{prefix}: foo\n #{prefix}: bar", bold: false) + expect(ui).to receive(:detail).with( + " #{prefix}: foo\n #{prefix}: bar", bold: false, target: prefix) subject.detail("foo\nbar") end it "doesn't prefix if requested" do - expect(ui).to receive(:detail).with("foo", prefix: false, bold: false) + expect(ui).to receive(:detail).with("foo", prefix: false, bold: false, target: prefix) subject.detail("foo", prefix: false) end end @@ -371,18 +372,18 @@ describe Vagrant::UI::Prefixed do end it "doesn't prefix if requestsed" do - expect(ui).to receive(:output).with("foo", prefix: false, bold: true) + expect(ui).to receive(:output).with("foo", prefix: false, bold: true, target: prefix) subject.output("foo", prefix: false) end it "requests bolding" do - expect(ui).to receive(:output).with("==> #{prefix}: foo", bold: true) + expect(ui).to receive(:output).with("==> #{prefix}: foo", bold: true, target: prefix) subject.output("foo") end it "does not request bolding if class-level disabled" do ui.opts[:bold] = false - expect(ui).to receive(:output).with("==> #{prefix}: foo", {}) + expect(ui).to receive(:output).with("==> #{prefix}: foo", target: prefix) subject.output("foo") end