Skip to content

Commit

Permalink
Fix linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
bharathsreekanth committed Sep 24, 2024
1 parent da1ed51 commit 52e8fdf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions service/step_defs_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1928,7 +1928,7 @@ func (f *feature) iCallGetNodeUID() error {
return nil
}

func (f *feature) aValidNodeUidIsReturned() error {
func (f *feature) aValidNodeUIDIsReturned() error {
if f.nodeUID == "" {
return errors.New("Unable to fetch the node UID")
}
Expand Down Expand Up @@ -4880,7 +4880,7 @@ func FeatureContext(s *godog.ScenarioContext) {
s.Step(`^I call Get NAS server from name "([^"]*)" "([^"]*)"$`, f.iCallGetNASServerIDFromName)
s.Step(`^I call ping NAS server "([^"]*)" "([^"]*)"$`, f.iCallPingNASServer)
s.Step(`^I call GetNodeUID$`, f.iCallGetNodeUID)
s.Step(`^a valid node uid is returned$`, f.aValidNodeUidIsReturned)
s.Step(`^a valid node uid is returned$`, f.aValidNodeUIDIsReturned)

s.After(func(ctx context.Context, _ *godog.Scenario, _ error) (context.Context, error) {
if f.server != nil {
Expand Down

0 comments on commit 52e8fdf

Please sign in to comment.