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

Correct grammatical mistake #914

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions features/docs/profiles.feature
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,10 @@ Feature: Profiles
Scenario: Overriding the profile's features to run
Given a file named "features/another.feature" with:
"""
Feature: Just this one should be ran
Feature: Just this one should be run
"""
When I run `cucumber -p default features/another.feature`
Then exactly these features should be ran: features/another.feature
Then exactly these features should be run: features/another.feature

Scenario: Overriding the profile's formatter
You will most likely want to define a formatter in your default formatter.
Expand Down
2 changes: 1 addition & 1 deletion features/lib/step_definitions/profile_steps.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
expect(all_stdout.scan(/^ \* (.*\.rb)$/).flatten).to eq files.split(/,\s+/)
end

Then /^exactly these features should be ran:\s*(.*)$/ do |files|
Then /^exactly these features should be run:\s*(.*)$/ do |files|
expect(all_stdout.scan(/^ \* (.*\.feature)$/).flatten).to eq files.split(/,\s+/)
end