You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
t.Run("Download using manifest - access token cannot be specified", func(t*testing.T) {
87
87
err:=newMonaco(t).download("--token API_TOKEN")
88
-
assert.EqualError(t, err, "'--token', '--oauth-client-id', and '--oauth-client-secret' can only be used with '--url', while '--manifest' must NOT be set")
88
+
assert.EqualError(t, err, "'--token', '--oauth-client-id', '--oauth-client-secret', and '--platform-token' can only be used with '--url', while '--manifest' must NOT be set")
89
89
})
90
90
91
91
t.Run("Download using manifest - OAuth client ID cannot be specified", func(t*testing.T) {
assert.EqualError(t, err, "'--token', '--oauth-client-id', and '--oauth-client-secret' can only be used with '--url', while '--manifest' must NOT be set")
93
+
assert.EqualError(t, err, "'--token', '--oauth-client-id', '--oauth-client-secret', and '--platform-token' can only be used with '--url', while '--manifest' must NOT be set")
94
94
})
95
95
96
96
t.Run("Download using manifest - OAuth client secret cannot be specified", func(t*testing.T) {
assert.EqualError(t, err, "'--token', '--oauth-client-id', and '--oauth-client-secret' can only be used with '--url', while '--manifest' must NOT be set")
98
+
assert.EqualError(t, err, "'--token', '--oauth-client-id', '--oauth-client-secret', and '--platform-token' can only be used with '--url', while '--manifest' must NOT be set")
99
99
})
100
100
101
101
t.Run("Download using manifest - platform token cannot be specified", func(t*testing.T) {
0 commit comments