diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f732b25c..f94922607 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ ## Bug fixes: * Fix: Formatters incorrectly handle Unicode text file content of attachments. +* Enhancement: Changed visibility of PickleId property of ScenarioInfo to public. *Contributors of this release (in alphabetical order):* @clrudolphi diff --git a/Reqnroll/ScenarioInfo.cs b/Reqnroll/ScenarioInfo.cs index 09f59a70e..56195daf8 100644 --- a/Reqnroll/ScenarioInfo.cs +++ b/Reqnroll/ScenarioInfo.cs @@ -49,7 +49,7 @@ public class ScenarioInfo /// /// This holds the unique identifier for the test ("pickle") represented by this scenario info. Used internally at runtime. /// - internal string PickleId { get; set; } + public string PickleId { get; internal set; } public ScenarioInfo(string title, string description, string[] tags, IOrderedDictionary arguments, string[] inheritedTags = null, string pickleIndex = null)