Skip to content

Commit

Permalink
Update AggregateRootMappedByConventionTests.cs
Browse files Browse the repository at this point in the history
Maybe I'm wrong, but the names of the event handlers suggested that their visibility was set wrong.
  • Loading branch information
adamcogx committed Oct 9, 2013
1 parent db51b4a commit 9845a7f
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 9845a7f

Please sign in to comment.