grim/convey

fix a typo

2018-01-12, Gary Kramlich
947047a8e382
Parents d4f80bb35ed0
Children f92879e96f9e
fix a typo
--- a/state/state_test.go Fri Jan 12 23:43:17 2018 -0600
+++ b/state/state_test.go Fri Jan 12 23:44:56 2018 -0600
@@ -43,7 +43,7 @@
st3 := st2.WrapWithExpandableEnv([]string{"X=2", "Y=2"}, []string{}, ";")
st4 := st3.WrapWithExpandableEnv([]string{"X=3", "Y=3", "Z=3"}, []string{}, ";")
- // Things in the "base" env are not overriden, but things
+ // Things in the "base" env are not overridden, but things
// that are wrapped take the highest precedence
Expect(st4.GetEnv()).To(ConsistOf([]string{"X=1", "Y=0", "Z=3"}))
}