1
0
mirror of https://github.com/aquasecurity/kube-bench.git synced 2024-11-21 23:58:06 +00:00

Set actualResult (#703)

actual Result is used later on to get actual value and the --include-test-output values but it never got set so its always empty.
This commit is contained in:
yoavrotems 2020-09-17 13:23:02 +03:00 committed by GitHub
parent 1899f26bc1
commit 041c437339
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -169,6 +169,7 @@ func (t testItem) execute(s string) *testOutput {
}
}
result.actualResult = s
return result
}