Skip to content

Commit

Permalink
Fixing a spelling error in the config file test where no value is pro…
Browse files Browse the repository at this point in the history
…vided (#10920)
  • Loading branch information
Jeff Schoolcraft authored and taquitos committed Nov 16, 2017
1 parent 870099a commit f1043fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def method_missing(method_sym, *arguments, &block)
# So we tell the user that they can provide a value
warning = ["In the config file '#{self.configfile_path}'"]
warning << "you have the line #{method_sym}, but didn't provide"
warning << "any value. Make sure to append a value rght after the"
warning << "any value. Make sure to append a value right after the"
warning << "option name. Make sure to check the docs for more information"
UI.important(warning.join(" "))
end
Expand Down
2 changes: 1 addition & 1 deletion fastlane_core/spec/configuration_file_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
end

it "prints a warning if no value is provided" do
important_message = "In the config file './fastlane_core/spec/fixtures/ConfigFileEmptyValue' you have the line apple_id, but didn't provide any value. Make sure to append a value rght after the option name. Make sure to check the docs for more information"
important_message = "In the config file './fastlane_core/spec/fixtures/ConfigFileEmptyValue' you have the line apple_id, but didn't provide any value. Make sure to append a value right after the option name. Make sure to check the docs for more information"
expect(FastlaneCore::UI).to receive(:important).with(important_message)
expect(FastlaneCore::UI).to receive(:important).with("No values defined in './fastlane_core/spec/fixtures/ConfigFileEmptyValue'")

Expand Down

0 comments on commit f1043fe

Please sign in to comment.