Skip to content

Commit

Permalink
[test] Fix a bad test value.
Browse files Browse the repository at this point in the history
  • Loading branch information
DHowett committed Mar 20, 2017
1 parent 221fc98 commit d8661a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion decode_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ func TestFormatDetection(t *testing.T) {
{OpenStepFormat, []byte(`(1,2,3,4,5)`)},
{OpenStepFormat, []byte(`<abab>`)},
{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 {
Expand Down

0 comments on commit d8661a8

Please sign in to comment.