Skip to content

Commit 1a09e9a

Browse files
authored
Fix branch in [Bitrise] tests (#10439)
1 parent 4e8c75d commit 1a09e9a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

services/bitrise/bitrise.service.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export default class Bitrise extends BaseJsonService {
4545
}),
4646
pathParam({
4747
name: 'branch',
48-
example: 'master',
48+
example: 'develop',
4949
}),
5050
queryParam({
5151
name: 'token',

services/bitrise/bitrise.tester.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ t.create('deploy status')
1010
})
1111

1212
t.create('deploy status with branch')
13-
.get('/e736852157296019/master.json?token=vhgAmaiF3tWZoQyFLkKM7g')
13+
.get('/e736852157296019/develop.json?token=vhgAmaiF3tWZoQyFLkKM7g')
1414
.expectBadge({
1515
label: 'bitrise',
1616
message: isBuildStatus,
@@ -25,5 +25,5 @@ t.create('invalid token')
2525
.expectBadge({ label: 'bitrise', message: 'app not found or invalid token' })
2626

2727
t.create('invalid App ID')
28-
.get('/invalid/master.json?token=vhgAmaiF3tWZoQyFLkKM7g')
28+
.get('/invalid/develop.json?token=vhgAmaiF3tWZoQyFLkKM7g')
2929
.expectBadge({ label: 'bitrise', message: 'app not found or invalid token' })

0 commit comments

Comments
 (0)