From 3f11957927dd64f755d045af83be873bcaefdbfd Mon Sep 17 00:00:00 2001 From: MahtabBukhari Date: Tue, 14 May 2024 04:11:53 +0500 Subject: [PATCH] fixed unit test errors --- db/interface.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/db/interface.go b/db/interface.go index 33a891905..57a2d139c 100644 --- a/db/interface.go +++ b/db/interface.go @@ -144,7 +144,7 @@ type Database interface { GetFeaturesByWorkspaceUuid(uuid string) []WorkspaceFeatures GetFeatureByUuid(uuid string) WorkspaceFeatures CreateOrEditFeaturePhase(phase FeaturePhase) (FeaturePhase, error) - GetPhasesByFeatureUuid(featureUUID string) []FeaturePhase - GetFeaturePhaseByUuid(featureUUID, phaseUUID string) (FeaturePhase, error) - DeleteFeaturePhase(featureUUID, phaseUUID string) error + GetPhasesByFeatureUuid(featureUuid string) []FeaturePhase + GetFeaturePhaseByUuid(featureUuid, phaseUuid string) (FeaturePhase, error) + DeleteFeaturePhase(featureUuid, phaseUuid string) error }