diff options
author | Lars Lehtonen <lars.lehtonen@gmail.com> | 2019-11-16 10:21:39 -0800 |
---|---|---|
committer | zeripath <art27@cantab.net> | 2019-11-16 18:21:39 +0000 |
commit | 3dfe9190b05b68497478324a776c1f80d6f5e56d (patch) | |
tree | bbc1e2bcced751740d3d66b7499a08888e69b6ea /integrations/git_test.go | |
parent | f4bdcd6e2b28763919671c2c87fe68fd9bf43373 (diff) | |
download | gitea-3dfe9190b05b68497478324a776c1f80d6f5e56d.tar.gz gitea-3dfe9190b05b68497478324a776c1f80d6f5e56d.zip |
integrations: fix dropped errors in TestCreateOrUpdateRepoFileForUpdateWithFileMove() (#9040)
integrations: fix dropped error in lfsCommitAndPushTest()
Diffstat (limited to 'integrations/git_test.go')
-rw-r--r-- | integrations/git_test.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/integrations/git_test.go b/integrations/git_test.go index dbcc265227..c0e1d7d284 100644 --- a/integrations/git_test.go +++ b/integrations/git_test.go @@ -162,6 +162,7 @@ func lfsCommitAndPushTest(t *testing.T, dstPath string) (littleLFS, bigLFS strin }, Message: fmt.Sprintf("Testing commit @ %v", time.Now()), }) + assert.NoError(t, err) git.GlobalCommandArgs = oldGlobals littleLFS, bigLFS = commitAndPushTest(t, dstPath, prefix) |