| Index: recipe_modules/gclient/test_api.py
|
| diff --git a/recipe_modules/gclient/test_api.py b/recipe_modules/gclient/test_api.py
|
| index be9338de86642ef8adae94a477f7d2254f7ed9bf..499651bbc6366740c528c4c6ec0e6634bb24a390 100644
|
| --- a/recipe_modules/gclient/test_api.py
|
| +++ b/recipe_modules/gclient/test_api.py
|
| @@ -32,6 +32,6 @@ class GclientTestApi(recipe_test_api.RecipeTestApi):
|
| h = hashlib.sha1(project)
|
| if GIT_MODE:
|
| return h.hexdigest()
|
| - else:
|
| + else: # pragma: no cover
|
| import struct
|
| return struct.unpack('!I', h.digest()[:4])[0] % 300000
|
|
|