Skip to content

Commit

Permalink
fix windows permissions in install test
Browse files Browse the repository at this point in the history
  • Loading branch information
jack0x2 committed Dec 13, 2024
1 parent e5f58b7 commit e2221aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/new-e2e/tests/windows/install-test/installtester.go
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ func (t *Tester) testInstalledFilePermissions(tt *testing.T, ddAgentUserIdentity
),
windows.NewExplicitAccessRuleWithFlags(
ddAgentUserIdentity,
windows.FileWrite,
windows.FileWrite|windows.SYNCHRONIZE,
windows.AccessControlTypeAllow,
windows.InheritanceFlagsContainer,
windows.PropagationFlagsNone,
Expand Down Expand Up @@ -547,7 +547,7 @@ func (t *Tester) testInstalledFilePermissions(tt *testing.T, ddAgentUserIdentity
),
windows.NewInheritedAccessRuleWithFlags(
ddAgentUserIdentity,
windows.FileWrite,
windows.FileWrite|windows.SYNCHRONIZE,
windows.AccessControlTypeAllow,
windows.InheritanceFlagsContainer,
windows.PropagationFlagsNone,
Expand Down

0 comments on commit e2221aa

Please sign in to comment.