From b61b6ff53951d208bf0d89d7befed3cc89bdf8e6 Mon Sep 17 00:00:00 2001 From: Winfried Plappert Date: Fri, 21 Feb 2025 21:00:45 +0000 Subject: [PATCH] cmd_ls_integration_test: fixed white space issue (gofmt) --- cmd/restic/cmd_ls_integration_test.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/cmd/restic/cmd_ls_integration_test.go b/cmd/restic/cmd_ls_integration_test.go index c0008c586..b9d9649f0 100644 --- a/cmd/restic/cmd_ls_integration_test.go +++ b/cmd/restic/cmd_ls_integration_test.go @@ -146,13 +146,13 @@ func TestRunLsJson(t *testing.T) { // the node structure from cmd_ls type lsNode struct { - Name string `json:"name"` - Type string `json:"type"` - Path string `json:"path"` - Permissions string `json:"permissions,omitempty"` - Inode uint64 `json:"inode,omitempty"` - MessageType string `json:"message_type"` // "node" - StructType string `json:"struct_type"` // "node", deprecated + Name string `json:"name"` + Type string `json:"type"` + Path string `json:"path"` + Permissions string `json:"permissions,omitempty"` + Inode uint64 `json:"inode,omitempty"` + MessageType string `json:"message_type"` // "node" + StructType string `json:"struct_type"` // "node", deprecated } var testNode lsNode