Skip to content

Commit 60804fc

Browse files
committed
nvim: remove ChildProcessEnv([]string{}) for RuntimeFiles API
1 parent 29f049d commit 60804fc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nvim/nvim_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ func newChildProcess(tb testing.TB) (*Nvim, func()) {
1919

2020
v, err := NewChildProcess(
2121
ChildProcessArgs("-u", "NONE", "-n", "--embed", "--headless"),
22-
ChildProcessEnv([]string{}),
23-
ChildProcessLogf(tb.Logf))
22+
ChildProcessLogf(tb.Logf),
23+
)
2424
if err != nil {
2525
tb.Fatal(err)
2626
}

0 commit comments

Comments
 (0)