diff --git a/tests/lib/collectors/grr_hosts.py b/tests/lib/collectors/grr_hosts.py index d7c529e91..133c4c5d1 100644 --- a/tests/lib/collectors/grr_hosts.py +++ b/tests/lib/collectors/grr_hosts.py @@ -302,8 +302,7 @@ def testProcessWindowsArtifacts(self, self.grr_artifact_collector.PostProcess() kwargs = mock_ArtifactCollectorFlowArgs.call_args[1] - # Raw access for Windows - self.assertTrue(kwargs['use_raw_filesystem_access']) + self.assertFalse(kwargs["use_raw_filesystem_access"]) @mock.patch('grr_api_client.api.InitHttp') @mock.patch('grr_api_client.flow.FlowRef.Get')