diff options
| author | Patrick Steinhardt <[email protected]> | 2015-04-24 12:59:29 +0200 |
|---|---|---|
| committer | Patrick Steinhardt <[email protected]> | 2015-04-24 13:01:51 +0200 |
| commit | e300945a3d456af1b619447347cd19a779b7a8f5 (patch) | |
| tree | 3e37d99c8266d130ea54b2080e20199e8073e99e /submodule_test.go | |
| parent | e021457f27654ea0f1ec41963c6da62c168be853 (diff) | |
tests: always clean up temporary repository dirs
Some test repositories are not correctly removed after the tests
did run. Fix by introducing a function that is to be used for
cleaning up temporary test repositories.
Diffstat (limited to 'submodule_test.go')
| -rw-r--r-- | submodule_test.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/submodule_test.go b/submodule_test.go index 1c8f471..ee75d53 100644 --- a/submodule_test.go +++ b/submodule_test.go @@ -6,6 +6,8 @@ import ( func TestSubmoduleForeach(t *testing.T) { repo := createTestRepo(t) + defer cleanupTestRepo(t, repo) + seedTestRepo(t, repo) _, err := repo.AddSubmodule("http://example.org/submodule", "submodule", true) |
