Skip to content

Commit

Permalink
Merge pull request #102 from adamcogx/patch-1
Browse files Browse the repository at this point in the history
Update AggregateRootMappedByConventionTests.cs
  • Loading branch information
pjvds committed Oct 10, 2013
2 parents db51b4a + 9845a7f commit 512aabe
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ public virtual void OnEventForPublicMethod(EventForPublicMethod e)
OnEventForPublicMethodInvokedCount++;
}

public virtual void OnEventForProtectedMethod(EventForProtectedMethod e)
protected virtual void OnEventForProtectedMethod(EventForProtectedMethod e)
{
OnEventForProtectedMethodInvokeCount++;
}

public virtual void OnEventForPrivateMethod(EventForPrivateMethod e)
private virtual void OnEventForPrivateMethod(EventForPrivateMethod e)
{
OnEventForPrivateMethodInvokeCount++;
}
Expand Down

0 comments on commit 512aabe

Please sign in to comment.