Skip to content

Commit 3e0899b

Browse files
committed
Fixed naming and visibility of storage dictionary in dynamic data tests
1 parent 6d849ab commit 3e0899b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/WorkflowCore.IntegrationTests/Scenarios/DynamicDataIOScenario.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ public class MyDataClass
2828
public int Value1 { get; set; }
2929
public int Value2 { get; set; }
3030

31-
public Dictionary<string, int> _storage = new Dictionary<string, int>();
31+
public Dictionary<string, int> Storage = new Dictionary<string, int>();
3232

3333
public int this[string propertyName]
3434
{
35-
get => _storage[propertyName];
36-
set => _storage[propertyName] = value;
35+
get => Storage[propertyName];
36+
set => Storage[propertyName] = value;
3737
}
3838
}
3939

0 commit comments

Comments
 (0)