@@ -1368,8 +1368,8 @@ func TestParseEnvMapEmptyStringPreserved(t *testing.T) {
13681368 result , err := parseEnv (input )
13691369
13701370 assert .NoError (t , err )
1371- assert .Equal (t , "" , result ["TEST_VAR" ]) // Empty string preserved
1372- assert .Equal (t , "" , result ["ANOTHER_VAR" ]) // Empty string preserved
1371+ assert .Equal (t , "" , result ["TEST_VAR" ]) // Empty string preserved
1372+ assert .Equal (t , "" , result ["ANOTHER_VAR" ]) // Empty string preserved
13731373 assert .Equal (t , "value" , result ["EXPLICIT" ])
13741374}
13751375
@@ -1700,8 +1700,8 @@ func TestMapEnvWithOSEnvReading(t *testing.T) {
17001700 got , err := initializePlugin (param )
17011701
17021702 assert .NoError (t , err )
1703- assert .Equal (t , "us-west-2" , got .Env ["AWS_REGION" ]) // Null reads from OS env
1704- assert .Equal (t , "" , got .Env ["EMPTY_VAR" ]) // Empty string is literal
1703+ assert .Equal (t , "us-west-2" , got .Env ["AWS_REGION" ]) // Null reads from OS env
1704+ assert .Equal (t , "" , got .Env ["EMPTY_VAR" ]) // Empty string is literal
17051705 assert .Equal (t , "explicit-value" , got .Env ["EXPLICIT" ])
17061706}
17071707
0 commit comments