Skip to content

Commit 02169c2

Browse files
committed
Fix unit tests missed during the de-brandification
1 parent b189450 commit 02169c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/unit/util/command_line_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@
127127
expect {
128128
commandline.execute
129129
}.to exit_with(1)
130-
.and output(/Unknown Puppet subcommand 'whatever'/).to_stdout
130+
.and output(/Unknown subcommand 'whatever'/).to_stdout
131131
end
132132

133133
it "should abort and show the help message" do
@@ -138,7 +138,7 @@
138138
expect {
139139
commandline.execute
140140
}.to exit_with(1)
141-
.and output(/See 'puppet help' for help on available puppet subcommands/).to_stdout
141+
.and output(/See 'puppet help' for help on available subcommands/).to_stdout
142142
end
143143

144144
%w{--version -V}.each do |arg|

0 commit comments

Comments
 (0)