Skip to content

Commit

Permalink
Update AggregateRootMappedByExpressionTests.cs
Browse files Browse the repository at this point in the history
Again, naming of event handlers suggested incorrect visibility.
  • Loading branch information
adamcogx committed Oct 9, 2013
1 parent db51b4a commit bb54db3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,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 bb54db3

Please sign in to comment.