Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Vosmaer <jacob@gitlab.com>2019-01-08 20:17:46 +0300
committerJacob Vosmaer <jacob@gitlab.com>2019-01-08 20:17:46 +0300
commit212311a8fcca26d78909924db04e1834c98b8df9 (patch)
treecf089893037289a1509550a019e3e3e0417ec094
parent8a867c3c90f28bcbe9114869bc8d8dbbfaeb1d67 (diff)
Fix typo in test
-rw-r--r--internal/service/repository/create_from_snapshot_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/service/repository/create_from_snapshot_test.go b/internal/service/repository/create_from_snapshot_test.go
index 3fe04741f..bfbb2258c 100644
--- a/internal/service/repository/create_from_snapshot_test.go
+++ b/internal/service/repository/create_from_snapshot_test.go
@@ -29,7 +29,7 @@ type testhandler struct {
func (h *testhandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
if r.Header.Get("Authorization") != secret {
- http.Error(w, "Unuthorized", http.StatusUnauthorized)
+ http.Error(w, "Unauthorized", http.StatusUnauthorized)
return
}