Skip to content

Commit 36db3f8

Browse files
committed
fix test
1 parent 99c010d commit 36db3f8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tests/Url/BitBucketGeneratorTest.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,32 +64,32 @@ public function compareUrlProvider()
6464
'same maintainer' => array(
6565
$this->getPackageWithSource('acme/package', '3.12.0', 'https://bitbucket.org/acme/package.git'),
6666
$this->getPackageWithSource('acme/package', '3.12.1', 'https://bitbucket.org/acme/package.git'),
67-
'https://bitbucket.org/acme/package/branches/compare/3.12.0%0D3.12.1',
67+
'https://bitbucket.org/acme/package/branches/compare/3.12.1%0D3.12.0',
6868
),
6969
'without .git' => array(
7070
$this->getPackageWithSource('acme/package', '3.12.0', 'https://bitbucket.org/acme/package'),
7171
$this->getPackageWithSource('acme/package', '3.12.1', 'https://bitbucket.org/acme/package'),
72-
'https://bitbucket.org/acme/package/branches/compare/3.12.0%0D3.12.1',
72+
'https://bitbucket.org/acme/package/branches/compare/3.12.1%0D3.12.0',
7373
),
7474
'dev versions' => array(
7575
$this->getPackageWithSource('acme/package', 'dev-master', 'https://bitbucket.org/acme/package.git', 'd46283075d76ed244f7825b378eeb1cee246af73'),
7676
$this->getPackageWithSource('acme/package', 'dev-master', 'https://bitbucket.org/acme/package.git', '9b860214d58c48b5cbe99bdb17914d0eb723c9cd'),
77-
'https://bitbucket.org/acme/package/branches/compare/d462830%0D9b86021',
77+
'https://bitbucket.org/acme/package/branches/compare/9b86021%0Dd462830',
7878
),
7979
'invalid or short reference' => array(
8080
$this->getPackageWithSource('acme/package', 'dev-master', 'https://bitbucket.org/acme/package.git', 'd462830'),
8181
$this->getPackageWithSource('acme/package', 'dev-master', 'https://bitbucket.org/acme/package.git', '1'),
82-
'https://bitbucket.org/acme/package/branches/compare/d462830%0D1',
82+
'https://bitbucket.org/acme/package/branches/compare/1%0Dd462830',
8383
),
8484
'compare with base fork' => array(
8585
$this->getPackageWithSource('acme/package', '3.12.0', 'https://bitbucket.org/IonBazan/package.git'),
8686
$this->getPackageWithSource('acme/package', '3.12.1', 'https://bitbucket.org/acme/package.git'),
87-
'https://bitbucket.org/acme/package/branches/compare/IonBazan/package:3.12.0%0Dacme/package:3.12.1',
87+
'https://bitbucket.org/acme/package/branches/compare/acme/package:3.12.1%0DIonBazan/package:3.12.0',
8888
),
8989
'compare with head fork' => array(
9090
$this->getPackageWithSource('acme/package', '3.12.0', 'https://bitbucket.org/acme/package.git'),
9191
$this->getPackageWithSource('acme/package', '3.12.1', 'https://bitbucket.org/IonBazan/package.git'),
92-
'https://bitbucket.org/IonBazan/package/branches/compare/acme/package:3.12.0%0DIonBazan/package:3.12.1',
92+
'https://bitbucket.org/IonBazan/package/branches/compare/IonBazan/package:3.12.1%0Dacme/package:3.12.0',
9393
),
9494
'compare with different repository provider' => array(
9595
$this->getPackageWithSource('acme/package', '3.12.0', 'https://bitbucket.org/acme/package.git'),

0 commit comments

Comments
 (0)