Skip to content

Commit

Permalink
appease the codacy gods
Browse files Browse the repository at this point in the history
  • Loading branch information
MarioAndron committed Feb 1, 2019
1 parent 8bcd493 commit 8df0cee
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/WorkflowCore.IntegrationTests/Scenarios/DiScenario.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ public class DiData

public class Dependency1
{
public static int InstanceCounter = 0;
private static int InstanceCounter = 0;

public int Instance { get; set; } = ++InstanceCounter;
}

public class Dependency2
{
public readonly Dependency1 dependency1;
public Dependency1 dependency1 { get; private set; }

public Dependency2(Dependency1 dependency1)
{
Expand All @@ -54,8 +54,8 @@ public Dependency2(Dependency1 dependency1)

public class DiStep1 : StepBody
{
public readonly Dependency1 dependency1;
public readonly Dependency2 dependency2;
public Dependency1 dependency1 { get; private set; }
public Dependency2 dependency2 { get; private set; }

public DiStep1(Dependency1 dependency1, Dependency2 dependency2)
{
Expand Down

0 comments on commit 8df0cee

Please sign in to comment.