Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing a spelling error in the config file test #10920

Merged
merged 1 commit into from
Nov 16, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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