File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 33from codeflash .code_utils .compat import LF
44from codeflash .either import CodeflashError
55
6+ _TEST_CONFIDENCE_ERROR = CodeflashError (
7+ "TEST_CONFIDENCE_THRESHOLD_NOT_MET_ERROR" , "The threshold for test confidence was not met."
8+ )
9+
610_BEHAVIORAL_TEST_FAILURE_ERROR = CodeflashError (
711 "BEHAVIORAL_TEST_FAILURE_ERROR" , "Failed to establish a baseline for the original code - bevhavioral tests failed."
812)
@@ -74,7 +78,7 @@ def coverage_threshold_not_met_error() -> CodeflashError:
7478
7579
7680def test_confidence_threshold_not_met_error () -> CodeflashError :
77- return CodeflashError ( "TEST_CONFIDENCE_THRESHOLD_NOT_MET_ERROR" , "The threshold for test confidence was not met." )
81+ return _TEST_CONFIDENCE_ERROR
7882
7983
8084def behavioral_test_failure_error () -> CodeflashError :
You can’t perform that action at this time.
0 commit comments