@@ -165,7 +165,7 @@ describe('sentry-cli', function () {
165165
166166 this . sinon . assert . calledWithExactly (
167167 stub ,
168- `${ SENTRY_BIN_PATH } --auth-token my-auth-token releases --org my-org --project my-project new [email protected] @1234567` 168+ `${ SENTRY_BIN_PATH } --auth-token my-auth-token releases --org my-org --project my-project new " [email protected] @1234567" ` 169169 ) ;
170170 } ) ;
171171
@@ -179,7 +179,7 @@ describe('sentry-cli', function () {
179179
180180 this . sinon . assert . calledWithExactly (
181181 stub ,
182- `${ SENTRY_BIN_PATH } --auth-token my-auth-token releases --org my-org --project my-project set-commits [email protected] @1234567 --auto --ignore-missing --ignore-empty` 182+ `${ SENTRY_BIN_PATH } --auth-token my-auth-token releases --org my-org --project my-project set-commits " [email protected] @1234567" --auto --ignore-missing --ignore-empty` 183183 ) ;
184184 } ) ;
185185
@@ -193,7 +193,7 @@ describe('sentry-cli', function () {
193193
194194 this . sinon . assert . calledWithExactly (
195195 stub ,
196- `${ SENTRY_BIN_PATH } --auth-token my-auth-token releases --org my-org --project my-project files [email protected] @1234567 upload-sourcemaps --rewrite ${ path . join ( 196+ `${ SENTRY_BIN_PATH } --auth-token my-auth-token releases --org my-org --project my-project files " [email protected] @1234567" upload-sourcemaps --rewrite ${ path . join ( 197197 'my-dest-dir' ,
198198 'assets'
199199 ) } `
@@ -212,7 +212,7 @@ describe('sentry-cli', function () {
212212
213213 this . sinon . assert . calledWithExactly (
214214 stub ,
215- `${ SENTRY_BIN_PATH } --auth-token my-auth-token releases --org my-org --project my-project files [email protected] @1234567 upload-sourcemaps --rewrite ${ path . join ( 215+ `${ SENTRY_BIN_PATH } --auth-token my-auth-token releases --org my-org --project my-project files " [email protected] @1234567" upload-sourcemaps --rewrite ${ path . join ( 216216 'my-dest-dir' ,
217217 'assets'
218218 ) } --url-prefix ~/assets`
@@ -229,7 +229,7 @@ describe('sentry-cli', function () {
229229
230230 this . sinon . assert . calledWithExactly (
231231 stub ,
232- `${ SENTRY_BIN_PATH } --auth-token my-auth-token releases --org my-org --project my-project finalize [email protected] @1234567` 232+ `${ SENTRY_BIN_PATH } --auth-token my-auth-token releases --org my-org --project my-project finalize " [email protected] @1234567" ` 233233 ) ;
234234 } ) ;
235235 } ) ;
@@ -245,7 +245,7 @@ describe('sentry-cli', function () {
245245
246246 this . sinon . assert . calledWithExactly (
247247 stub ,
248- `${ SENTRY_BIN_PATH } --auth-token my-auth-token releases --org my-org --project my-project deploys [email protected] @1234567 new -e my-production` 248+ `${ SENTRY_BIN_PATH } --auth-token my-auth-token releases --org my-org --project my-project deploys " [email protected] @1234567" new -e my-production` 249249 ) ;
250250 } ) ;
251251 } ) ;
@@ -261,7 +261,7 @@ describe('sentry-cli', function () {
261261
262262 this . sinon . assert . calledWithExactly (
263263 stub ,
264- `${ SENTRY_BIN_PATH } --auth-token my-auth-token releases --org my-org --project my-project delete [email protected] @1234567` 264+ `${ SENTRY_BIN_PATH } --auth-token my-auth-token releases --org my-org --project my-project delete " [email protected] @1234567" ` 265265 ) ;
266266 } ) ;
267267 } ) ;
0 commit comments