Skip to content

Commit

Permalink
Remove default values
Browse files Browse the repository at this point in the history
  • Loading branch information
twpayne committed Jan 5, 2019
1 parent 02bcd30 commit b28a722
Showing 1 changed file with 8 additions and 12 deletions.
20 changes: 8 additions & 12 deletions lib/chezmoi/dir_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
},
{
Expand All @@ -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,
},
},
{
Expand Down

0 comments on commit b28a722

Please sign in to comment.