diff options
author | Théo de la Hogue | 2023-07-03 14:53:40 +0200 |
---|---|---|
committer | Théo de la Hogue | 2023-07-03 14:53:40 +0200 |
commit | 3d66f3e2d58b7038cdfdf272f2d813e24b730243 (patch) | |
tree | 912f8c70933f1f4b3d0097b93f6089b5f7914f23 /src/argaze.test/GazeAnalysis/ExploitExploreRatio.py | |
parent | 25554ea7710c35107f0904532df093f9c15f74ae (diff) | |
download | argaze-3d66f3e2d58b7038cdfdf272f2d813e24b730243.zip argaze-3d66f3e2d58b7038cdfdf272f2d813e24b730243.tar.gz argaze-3d66f3e2d58b7038cdfdf272f2d813e24b730243.tar.bz2 argaze-3d66f3e2d58b7038cdfdf272f2d813e24b730243.tar.xz |
Updating GazeAnalysis test.
Diffstat (limited to 'src/argaze.test/GazeAnalysis/ExploitExploreRatio.py')
-rw-r--r-- | src/argaze.test/GazeAnalysis/ExploitExploreRatio.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/argaze.test/GazeAnalysis/ExploitExploreRatio.py b/src/argaze.test/GazeAnalysis/ExploitExploreRatio.py index 9cfcc0b..d788a42 100644 --- a/src/argaze.test/GazeAnalysis/ExploitExploreRatio.py +++ b/src/argaze.test/GazeAnalysis/ExploitExploreRatio.py @@ -28,10 +28,10 @@ class TestScanPathAnalyzer(unittest.TestCase): # Check scan path self.assertEqual(len(scan_path), 10) - xxr = xxr_analyzer.analyze(scan_path) + xxr_analyzer.analyze(scan_path) # Check exploit explore ratio: it should greater than 1 because of build_scan_path - self.assertGreaterEqual(xxr, 1.) + self.assertGreaterEqual(xxr_analyzer.exploit_explore_ratio, 1.) if __name__ == '__main__': |