From d8661a88fd75112394fa1e1ef3dbb041d8f77665 Mon Sep 17 00:00:00 2001 From: "Dustin L. Howett" Date: Mon, 20 Mar 2017 14:45:42 -0700 Subject: [PATCH] [test] Fix a bad test value. --- decode_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/decode_test.go b/decode_test.go index 7ca6afe..b74bacd 100644 --- a/decode_test.go +++ b/decode_test.go @@ -198,7 +198,7 @@ func TestFormatDetection(t *testing.T) { {OpenStepFormat, []byte(`(1,2,3,4,5)`)}, {OpenStepFormat, []byte(``)}, {GNUStepFormat, []byte(`(1,2,<*I3>)`)}, - {OpenStepFormat, []byte{0x00}}, + {InvalidFormat, []byte{0x00}}, // This isn't a valid property list of any sort. } for i, fmttest := range plists {