make the tests actually pass

This commit is contained in:
Lilian Jónsdóttir 2024-05-29 13:39:34 -07:00
parent a4f2f79c81
commit 4e60fa5372

2
pkg/env/env_test.go vendored
View file

@ -11,7 +11,7 @@ var (
func clearEnvForNow() {
for _, item := range []string{"EDITOR", "VISUAL"} {
os.Setenv(item, "")
os.Unsetenv(item)
}
}