From b28a7229f8b3f3515ae2c8a43c989e317d17a08a Mon Sep 17 00:00:00 2001 From: Tom Payne Date: Sat, 5 Jan 2019 15:02:17 +0100 Subject: [PATCH] Remove default values --- lib/chezmoi/dir_test.go | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/lib/chezmoi/dir_test.go b/lib/chezmoi/dir_test.go index 264d21d8234..8e670ce2938 100644 --- a/lib/chezmoi/dir_test.go +++ b/lib/chezmoi/dir_test.go @@ -14,25 +14,22 @@ func TestDirAttributes(t *testing.T) { { sourceName: "foo", da: DirAttributes{ - Name: "foo", - Exact: false, - Perm: 0777, + Name: "foo", + Perm: 0777, }, }, { sourceName: "dot_foo", da: DirAttributes{ - Name: ".foo", - Exact: false, - Perm: 0777, + Name: ".foo", + Perm: 0777, }, }, { sourceName: "private_foo", da: DirAttributes{ - Name: "foo", - Exact: false, - Perm: 0700, + Name: "foo", + Perm: 0700, }, }, { @@ -46,9 +43,8 @@ func TestDirAttributes(t *testing.T) { { sourceName: "private_dot_foo", da: DirAttributes{ - Name: ".foo", - Exact: false, - Perm: 0700, + Name: ".foo", + Perm: 0700, }, }, {