diff options
author | luzpaz <luzpaz@users.noreply.github.com> | 2021-07-08 08:55:09 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-08 14:55:09 +0200 |
commit | fc1607b3686a5c8c79b9a7853c065a68dcd5218b (patch) | |
tree | ee62b9be19e5cba632bf481e8c36504b7c4a437b /integrations/api_repo_lfs_test.go | |
parent | e0296b6a6de6450c474fdf7fe62635a05beb49ab (diff) | |
download | gitea-fc1607b3686a5c8c79b9a7853c065a68dcd5218b.tar.gz gitea-fc1607b3686a5c8c79b9a7853c065a68dcd5218b.zip |
Fix source typos (#16374)
* Fix source typos
Follow up to e0296b6a6
Found via `codespell -q 3 -S ./options/locale,./vendor -L ba,pullrequest,pullrequests,readby`
* rm "ignore destory on `make misspell-check`"
Co-authored-by: 6543 <6543@obermui.de>
Diffstat (limited to 'integrations/api_repo_lfs_test.go')
-rw-r--r-- | integrations/api_repo_lfs_test.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/integrations/api_repo_lfs_test.go b/integrations/api_repo_lfs_test.go index d0328fd121..9e1e2b0418 100644 --- a/integrations/api_repo_lfs_test.go +++ b/integrations/api_repo_lfs_test.go @@ -135,7 +135,7 @@ func TestAPILFSBatch(t *testing.T) { assert.Equal(t, "Oid or size are invalid", br.Objects[1].Error.Message) }) - t.Run("PointerSizeMissmatch", func(t *testing.T) { + t.Run("PointerSizeMismatch", func(t *testing.T) { defer PrintCurrentTest(t)() req := newRequest(t, &lfs.BatchRequest{ @@ -376,7 +376,7 @@ func TestAPILFSUpload(t *testing.T) { session.MakeRequest(t, req, http.StatusOK) }) - t.Run("HashMissmatch", func(t *testing.T) { + t.Run("HashMismatch", func(t *testing.T) { defer PrintCurrentTest(t)() req := newRequest(t, lfs.Pointer{Oid: "2581dd7bbc1fe44726de4b7dd806a087a978b9c5aec0a60481259e34be09b06a", Size: 1}, "a") @@ -384,7 +384,7 @@ func TestAPILFSUpload(t *testing.T) { session.MakeRequest(t, req, http.StatusUnprocessableEntity) }) - t.Run("SizeMissmatch", func(t *testing.T) { + t.Run("SizeMismatch", func(t *testing.T) { defer PrintCurrentTest(t)() req := newRequest(t, lfs.Pointer{Oid: "ca978112ca1bbdcafac231b39a23dc4da786eff8147c4e72b9807785afee48bb", Size: 2}, "a") |