You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
When upgrading SpecFlow to version 3.3.57 the constructor for ScenariInfo is changes from:
public ScenarioInfo(string title, string description, params string[] tags)
to:
public ScenarioInfo(string title, string description, string[] tags, IOrderedDictionary arguments)
This results in a failure to create the
private static readonly ScenarioInfo EmptyScenarioInfo = new ScenarioInfo(string.Empty, string.Empty);
in Allure.NUnit/AllureSpecFlow/PluginHelper.cs
To Reproduce
Run any scenario with this package combination:
Describe the bug
When upgrading SpecFlow to version 3.3.57 the constructor for ScenariInfo is changes from:
public ScenarioInfo(string title, string description, params string[] tags)
to:
public ScenarioInfo(string title, string description, string[] tags, IOrderedDictionary arguments)
This results in a failure to create the
private static readonly ScenarioInfo EmptyScenarioInfo = new ScenarioInfo(string.Empty, string.Empty);
in Allure.NUnit/AllureSpecFlow/PluginHelper.cs
To Reproduce
Run any scenario with this package combination:
The text was updated successfully, but these errors were encountered: