remove redundant test

This commit is contained in:
flintwinters 2025-12-17 00:37:50 -05:00
parent 328830092d
commit addb1bf00a

View File

@ -168,8 +168,3 @@ func TestShellVariablesEncoderUnwrapScalar(t *testing.T) {
assertEncodesToUnwrapped(t, "c: true", "c=true")
assertEncodesToUnwrapped(t, "d: value with spaces", "d=value with spaces")
}
func TestShellVariablesEncoderDefaultQuoting(t *testing.T) {
assertEncodesTo(t, "a: Lewis Carroll", "a='Lewis Carroll'")
assertEncodesTo(t, "b: 123 456", "b='123 456'")
}