Skip to content

Commit

Permalink
Update fault_test.go
Browse files Browse the repository at this point in the history
  • Loading branch information
chicco785 committed Oct 6, 2023
1 parent 8a40e70 commit e549671
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/fault/v1/fault_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ import (
func generateFault(faultId string, faultKind, phaseCode int, occurredDateTime int64) *Fault {
return &Fault{
ID: faultId,
Kind: PhaseConnectedFaultKind(faultKind).Enum(),
Kind: PhaseConnectedFaultKind(faultKind),
OccurredDateTime: occurredDateTime,
Phases: PhaseCode(phaseCode).Enum(),
Phases: PhaseCode(phaseCode),
}
}

Expand Down

0 comments on commit e549671

Please sign in to comment.