From d4c152a4dba0eec7c8ecd13732900909f51b1c97 Mon Sep 17 00:00:00 2001 From: Jeff Halter <868228+jhalter@users.noreply.github.com> Date: Mon, 6 Jun 2022 19:41:07 -0700 Subject: Refactor and cleanup to improve testability --- hotline/flattened_file_object_test.go | 3 --- 1 file changed, 3 deletions(-) (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 656af68..4b3fdf6 100644 --- a/hotline/flattened_file_object_test.go +++ b/hotline/flattened_file_object_test.go @@ -2,7 +2,6 @@ package hotline import ( "fmt" - "github.com/davecgh/go-spew/spew" "github.com/stretchr/testify/assert" "os" "testing" @@ -99,8 +98,6 @@ func TestFlatFileInformationFork_UnmarshalBinary(t *testing.T) { 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)) - - spew.Dump(ffif) }) } } -- cgit