Skip to content
This repository was archived by the owner on Jun 29, 2024. It is now read-only.

Commit 38f4c94

Browse files
committed
chore: fix lpc typo
1 parent b2c3837 commit 38f4c94

File tree

6 files changed

+222
-222
lines changed

6 files changed

+222
-222
lines changed

mocks/UCLCPInterface.go mocks/UCLPCInterface.go

+105-105
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mocks/UCLCPServerInterface.go mocks/UCLPCServerInterface.go

+113-113
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

uclpc/api.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
//go:generate mockery
1212

1313
// interface for the Limitation of Power Consumption UseCase as a server
14-
type UCLCPInterface interface {
14+
type UCLPCInterface interface {
1515
api.UseCaseInterface
1616

1717
// Scenario 1

uclpc/uclpc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ type UCLPC struct {
1717
validEntityTypes []model.EntityTypeType
1818
}
1919

20-
var _ UCLCPInterface = (*UCLPC)(nil)
20+
var _ UCLPCInterface = (*UCLPC)(nil)
2121

2222
func NewUCLPC(service eebusapi.ServiceInterface, eventCB api.EntityEventCallback) *UCLPC {
2323
uc := &UCLPC{

uclpcserver/api.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
//go:generate mockery
1010

1111
// interface for the Monitoring of Power Consumption UseCase
12-
type UCLCPServerInterface interface {
12+
type UCLPCServerInterface interface {
1313
api.UseCaseInterface
1414

1515
// Scenario 1

uclpcserver/uclpc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ type UCLPCServer struct {
2020
heartbeatKeoWorkaround bool // required because KEO Stack uses multiple identical entities for the same functionality, and it is not clear which to use
2121
}
2222

23-
var _ UCLCPServerInterface = (*UCLPCServer)(nil)
23+
var _ UCLPCServerInterface = (*UCLPCServer)(nil)
2424

2525
func NewUCLPC(service eebusapi.ServiceInterface, eventCB api.EntityEventCallback) *UCLPCServer {
2626
uc := &UCLPCServer{

0 commit comments

Comments
 (0)