Skip to content

Commit 977bc6f

Browse files
ushitora-anqouonsi
authored andcommittedMar 11, 2024
fix typo in core_dsl.go
1 parent e297e7b commit 977bc6f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎core_dsl.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -792,8 +792,8 @@ DeferCleanup can be passed:
792792
For example:
793793
794794
BeforeEach(func() {
795-
DeferCleanup(os.SetEnv, "FOO", os.GetEnv("FOO"))
796-
os.SetEnv("FOO", "BAR")
795+
DeferCleanup(os.Setenv, "FOO", os.GetEnv("FOO"))
796+
os.Setenv("FOO", "BAR")
797797
})
798798
799799
will register a cleanup handler that will set the environment variable "FOO" to its current value (obtained by os.GetEnv("FOO")) after the spec runs and then sets the environment variable "FOO" to "BAR" for the current spec.

0 commit comments

Comments
 (0)