This message was deleted.
# golang
s
This message was deleted.
l
Is this after taking a dependency on pulumi/pkg for testing? We use a replace to pin to a specific version:
Copy code
replace(
 <http://github.com/Azure/go-autorest|github.com/Azure/go-autorest> => <http://github.com/Azure/go-autorest|github.com/Azure/go-autorest> v12.4.3+incompatible
)
g
I think so. I just started writing my integration tests. i got it to work by ’go get’ing the problem package. i’ll try the replace. Thanks!
yup. that worked. Thank you!
👍 1