diff options
| author | Jeff Halter <868228+jhalter@users.noreply.github.com> | 2022-06-03 17:11:06 -0700 |
|---|---|---|
| committer | Jeff Halter <868228+jhalter@users.noreply.github.com> | 2022-06-03 17:11:06 -0700 |
| commit | 16a4ad707a05df25c9d12b8cc89fb3a9e3be0dba (patch) | |
| tree | 7ddeb3bf3496142a530949e64f361e5321c1fac5 /hotline/flattened_file_object_test.go | |
| parent | 481631f6b541a0f00c7c3ba789c13ac934bdefbc (diff) | |
Initial implementation of file transfer resume
Diffstat (limited to 'hotline/flattened_file_object_test.go')
| -rw-r--r-- | hotline/flattened_file_object_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hotline/flattened_file_object_test.go b/hotline/flattened_file_object_test.go index 300eb34..9a57e7e 100644 --- a/hotline/flattened_file_object_test.go +++ b/hotline/flattened_file_object_test.go @@ -52,7 +52,7 @@ func TestNewFlattenedFileObject(t *testing.T) { } for _, tt := range tests { t.Run(tt.name, func(t *testing.T) { - got, err := NewFlattenedFileObject(tt.args.fileRoot, tt.args.filePath, tt.args.fileName) + got, err := NewFlattenedFileObject(tt.args.fileRoot, tt.args.filePath, tt.args.fileName, 0) if tt.wantErr(t, err, fmt.Sprintf("NewFlattenedFileObject(%v, %v, %v)", tt.args.fileRoot, tt.args.filePath, tt.args.fileName)) { return } |