Skip to content

Commit

Permalink
fix missing method error
Browse files Browse the repository at this point in the history
  • Loading branch information
dsa0x committed Oct 22, 2024
1 parent 1b6bced commit 80f081a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions internal/provider/client_mock_workspaces_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -196,3 +196,7 @@ func (m *mockWorkspaces) SetDataRetentionPolicyDeleteOlder(ctx context.Context,
func (m *mockWorkspaces) SetDataRetentionPolicyDontDelete(ctx context.Context, organization string, options tfe.DataRetentionPolicyDontDeleteSetOptions) (*tfe.DataRetentionPolicyDontDelete, error) {
panic("not implemented")
}

func (m *mockWorkspaces) ListTagBindings(ctx context.Context, workspaceID string) ([]*tfe.TagBinding, error) {
panic("not implemented")
}

0 comments on commit 80f081a

Please sign in to comment.