From 8fc43f8e53a60144f49b92a0c28b0c939a69d1c9 Mon Sep 17 00:00:00 2001 From: Jeff Halter <868228+jhalter@users.noreply.github.com> Date: Tue, 28 Jun 2022 20:44:19 -0700 Subject: Implement Scanner and Writer interface for FilePath --- hotline/flattened_file_object_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hotline/flattened_file_object_test.go') diff --git a/hotline/flattened_file_object_test.go b/hotline/flattened_file_object_test.go index 596ca2c..274ca2b 100644 --- a/hotline/flattened_file_object_test.go +++ b/hotline/flattened_file_object_test.go @@ -37,7 +37,7 @@ func TestFlatFileInformationFork_UnmarshalBinary(t *testing.T) { for _, tt := range tests { t.Run(tt.name, func(t *testing.T) { ffif := &FlatFileInformationFork{} - tt.wantErr(t, ffif.UnmarshalBinary(tt.args.b), fmt.Sprintf("UnmarshalBinary(%v)", tt.args.b)) + tt.wantErr(t, ffif.UnmarshalBinary(tt.args.b), fmt.Sprintf("Write(%v)", tt.args.b)) }) } } -- cgit