diff options
Diffstat (limited to 'src/argaze.test/GazeAnalysis/ExploitExploreRatio.py')
-rw-r--r-- | src/argaze.test/GazeAnalysis/ExploitExploreRatio.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/argaze.test/GazeAnalysis/ExploitExploreRatio.py b/src/argaze.test/GazeAnalysis/ExploitExploreRatio.py index febfec7..9cfcc0b 100644 --- a/src/argaze.test/GazeAnalysis/ExploitExploreRatio.py +++ b/src/argaze.test/GazeAnalysis/ExploitExploreRatio.py @@ -30,10 +30,8 @@ class TestScanPathAnalyzer(unittest.TestCase): xxr = xxr_analyzer.analyze(scan_path) - print(xxr) - - # Check exploit explore ratio - self.assertGreaterEqual(xxr, 0) + # Check exploit explore ratio: it should greater than 1 because of build_scan_path + self.assertGreaterEqual(xxr, 1.) if __name__ == '__main__': |