Skip to content
Snippets Groups Projects
Unverified Commit 1a09e9a3 authored by Pierre-Yves Bigourdan's avatar Pierre-Yves Bigourdan Committed by GitHub
Browse files

Fix branch in [Bitrise] tests (#10439)

parent 4e8c75d0
No related branches found
No related tags found
No related merge requests found
...@@ -45,7 +45,7 @@ export default class Bitrise extends BaseJsonService { ...@@ -45,7 +45,7 @@ export default class Bitrise extends BaseJsonService {
}), }),
pathParam({ pathParam({
name: 'branch', name: 'branch',
example: 'master', example: 'develop',
}), }),
queryParam({ queryParam({
name: 'token', name: 'token',
......
...@@ -10,7 +10,7 @@ t.create('deploy status') ...@@ -10,7 +10,7 @@ t.create('deploy status')
}) })
t.create('deploy status with branch') t.create('deploy status with branch')
.get('/e736852157296019/master.json?token=vhgAmaiF3tWZoQyFLkKM7g') .get('/e736852157296019/develop.json?token=vhgAmaiF3tWZoQyFLkKM7g')
.expectBadge({ .expectBadge({
label: 'bitrise', label: 'bitrise',
message: isBuildStatus, message: isBuildStatus,
...@@ -25,5 +25,5 @@ t.create('invalid token') ...@@ -25,5 +25,5 @@ t.create('invalid token')
.expectBadge({ label: 'bitrise', message: 'app not found or invalid token' }) .expectBadge({ label: 'bitrise', message: 'app not found or invalid token' })
t.create('invalid App ID') t.create('invalid App ID')
.get('/invalid/master.json?token=vhgAmaiF3tWZoQyFLkKM7g') .get('/invalid/develop.json?token=vhgAmaiF3tWZoQyFLkKM7g')
.expectBadge({ label: 'bitrise', message: 'app not found or invalid token' }) .expectBadge({ label: 'bitrise', message: 'app not found or invalid token' })
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment