Skip to content

Commit

Permalink
Merge pull request #277 from dirkrombauts/SpecFlow-v2-compatibility
Browse files Browse the repository at this point in the history
Fix for SpecFlow 2 compatibility
  • Loading branch information
dirkrombauts committed Jan 27, 2016
2 parents f21c242 + 2b30a55 commit d72d2bf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ This document is formatted according to the principles of [Keep A CHANGELOG](htt

## [Unreleased]

- Compatibility fixes with SpecFlow v2 ([#276](https://github.com/picklesdoc/pickles/issues/276)) (by [@dirkrombauts](https://github.com/dirkrombauts)).

## [2.2.1] - 2016-01-25

### Changed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ where FeatureNamePropertyExistsWith(queriedFeatureName, among: scenarioPropertie
select scenario;

var scenarioOutlineExecutionIds = from scenario in allScenariosForAFeature
where NameOf(scenario) == queriedScenarioOutlineName
where NameOf(scenario).StartsWith(queriedScenarioOutlineName)
select ScenarioExecutionIdOf(scenario);

TestResult result = scenarioOutlineExecutionIds.Select(this.GetExecutionResult).Merge();
Expand Down

0 comments on commit d72d2bf

Please sign in to comment.