| Index: unittests/package_test.py
|
| diff --git a/unittests/package_test.py b/unittests/package_test.py
|
| index 019ede44d7c7bf31666ae0baeb323d90deb73506..d3924863a2cde0f9726ae61f7a70383fe97e36f5 100755
|
| --- a/unittests/package_test.py
|
| +++ b/unittests/package_test.py
|
| @@ -64,8 +64,9 @@ class TestGitRepoSpec(MockIOThings, unittest.TestCase):
|
| os.path.join(self.context.package_dir, 'funny_recipes')],
|
| cwd=None)
|
| self.mock_subprocess.check_call.assert_any_call(
|
| - ['git', 'reset', '-q', '--hard', 'deadbeef'],
|
| - cwd='repo/root/recipes/.recipe_deps/funny_recipes')
|
| + ['git',
|
| + '--git-dir', 'repo/root/recipes/.recipe_deps/funny_recipes/.git',
|
| + 'reset', '-q', '--hard', 'deadbeef'], cwd=None)
|
|
|
|
|
| class MockProtoFile(package.ProtoFile):
|
|
|