We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90df99d commit 34c1459Copy full SHA for 34c1459
CHANGELOG.md
@@ -1,4 +1,4 @@
1
-# v5.19.1
+# v5.19.2
2
3
* `management.RoleManager`: `Delete` would result in an `json.Unmarshal(nil)` error ([#232](https://github.com/go-auth0/auth0/pull/232))
4
management/custom_domain_test.go
@@ -33,9 +33,7 @@ func TestCustomDomain(t *testing.T) {
33
})
34
35
t.Run("Update", func(t *testing.T) {
36
- c.TLSPolicy = auth0.String("compatible")
37
-
38
- err = m.CustomDomain.Update(c.GetID(), c)
+ err = m.CustomDomain.Update(c.GetID(), &CustomDomain{TLSPolicy: auth0.String("recommended")})
39
if err != nil {
40
if err, ok := err.(Error); ok && err.Status() == http.StatusForbidden {
41
t.Skip(err)
0 commit comments