Skip to content

Commit

Permalink
[C#] Correct error in coverage reporting
Browse files Browse the repository at this point in the history
  • Loading branch information
aman-goel committed Oct 4, 2023
1 parent 05c9862 commit 58cb49a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ public void OnMonitorExecuteAction(string monitorType, string stateName, string
public void OnMonitorProcessEvent(string monitorType, string stateName, string senderName,
string senderType, string senderStateName, Event e)
{
EventCoverage.AddEventReceived(GetStateId(monitorType, stateName), e.GetType().Name);
EventCoverage.AddEventReceived(GetStateId(monitorType, stateName), e.GetType().FullName);
}

public void OnMonitorRaiseEvent(string monitorType, string stateName, Event e)
Expand Down

0 comments on commit 58cb49a

Please sign in to comment.