Change
888a67f6b9 added manipulation of __NoNeSuCh2, but it gets
accidentally picked up by the 'set' command looking for __NoNeSuCh in test
157 because 'set' will display the value of *all* variables whose prefix
matches the name given to the command.
}
$ENV{__NoNeSuCh} = 'foo';
- $ENV{__NoNeSuCh2} = 'foo';
$0 = 'bar';
env_is(__NoNeSuCh => 'foo', 'setting $0 does not break %ENV');
+ $ENV{__NoNeSuCh2} = 'foo';
$ENV{__NoNeSuCh2} = undef;
env_is(__NoNeSuCh2 => '', 'setting a key as undef does not delete it');