Skip to content

Commit

Permalink
fixed unit test errors
Browse files Browse the repository at this point in the history
  • Loading branch information
MahtabBukhari committed May 13, 2024
1 parent ede42b5 commit 3f11957
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions db/interface.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

0 comments on commit 3f11957

Please sign in to comment.