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:
authorPatrick Steinhardt <psteinhardt@gitlab.com>2022-10-10 13:01:02 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2022-10-14 13:44:54 +0300
commit1881ab188e2789715ad1307fb1748d6c14e72474 (patch)
tree5b89a52a44d9e7390208d2f233433dec8629fac4 /internal/gitaly/hook/prereceive_test.go
parent7d88809fa9bac82129b76e472f80e917eb0e3806 (diff)
global: Reorder `testing.TB` before `context.Context` arguments
A few weeks ago we have decided that `testing.TB` arguments should be first, `context.Context` second. This is rather a matter of perssnal taste instead of correctness, but we should strive for consistency. Reorder all arguments to match the agreed-upon style.
Diffstat (limited to 'internal/gitaly/hook/prereceive_test.go')
-rw-r--r--internal/gitaly/hook/prereceive_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/gitaly/hook/prereceive_test.go b/internal/gitaly/hook/prereceive_test.go
index f7bd01325..d0b46e1cd 100644
--- a/internal/gitaly/hook/prereceive_test.go
+++ b/internal/gitaly/hook/prereceive_test.go
@@ -86,7 +86,7 @@ func TestPrereceive_customHooks(t *testing.T) {
env: []string{payload},
hook: "#!/bin/sh\nenv | grep -v -e '^SHLVL=' -e '^_=' | sort\n",
stdin: "change\n",
- expectedStdout: strings.Join(getExpectedEnv(ctx, t, locator, gitCmdFactory, repo), "\n") + "\n",
+ expectedStdout: strings.Join(getExpectedEnv(t, ctx, locator, gitCmdFactory, repo), "\n") + "\n",
},
{
desc: "hook receives push options",