Skip to content

Commit

Permalink
fix test code compiling error due to not enough arguments in call to …
Browse files Browse the repository at this point in the history
…node0.Restart

Signed-off-by: Benjamin Wang <[email protected]>
  • Loading branch information
ahrtr committed Aug 30, 2022
1 parent 77773c7 commit 3fd1b42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/e2e/ctl_v3_auth_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1401,7 +1401,7 @@ func authTestCacheReload(cx ctlCtx) {

// restart the node
node0.WithStopSignal(syscall.SIGINT)
if err := node0.Restart(); err != nil {
if err := node0.Restart(context.TODO()); err != nil {
cx.t.Fatal(err)
}

Expand Down

0 comments on commit 3fd1b42

Please sign in to comment.