Skip to content

Commit

Permalink
revert
Browse files Browse the repository at this point in the history
  • Loading branch information
kakcy committed Mar 6, 2025
1 parent eb73d46 commit fbd1988
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/environment/storage/v2/environment_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func TestNewEnvironmentStorage(t *testing.T) {
t.Parallel()
mockController := gomock.NewController(t)
defer mockController.Finish()
storage := NewEnvironmentStorage(mock.NewMockClient(mockController))
storage := NewEnvironmentStorage(mock.NewMockQueryExecer(mockController))
assert.IsType(t, &environmentStorage{}, storage)
}

Expand Down
2 changes: 1 addition & 1 deletion pkg/environment/storage/v2/project_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func TestNewProjectStorage(t *testing.T) {
t.Parallel()
mockController := gomock.NewController(t)
defer mockController.Finish()
storage := NewProjectStorage(mock.NewMockClient(mockController))
storage := NewProjectStorage(mock.NewMockQueryExecer(mockController))
assert.IsType(t, &projectStorage{}, storage)
}

Expand Down

0 comments on commit fbd1988

Please sign in to comment.