| Index: dashboard/dashboard/pinpoint/models/change_test.py
|
| diff --git a/dashboard/dashboard/pinpoint/models/change_test.py b/dashboard/dashboard/pinpoint/models/change_test.py
|
| index 295beedf45bfec6004ae72e5c90ffa8b0da535c9..e71826aac9d944ee0f3669e772645a00f0c57c36 100644
|
| --- a/dashboard/dashboard/pinpoint/models/change_test.py
|
| +++ b/dashboard/dashboard/pinpoint/models/change_test.py
|
| @@ -109,7 +109,9 @@ class ChangeTest(testing_common.TestCase):
|
| del repository_url
|
| del path
|
| if git_hash == '0e57e2b':
|
| - return 'deps = {"src/catapult": "%s@0000000"}' % _CATAPULT_URL
|
| + # Also test the stripping of '.git' from repository URLs.
|
| + return 'deps = {"src/catapult": "%s@0000000"}' % (
|
| + _CATAPULT_URL + '.git')
|
| if git_hash == 'babe852':
|
| return 'deps = {"src/catapult": "%s@2222222"}' % _CATAPULT_URL
|
| raise NotImplementedError()
|
|
|