Skip to content

Commit e2aaae8

Browse files
smowtonaschackmull
andauthored
Increase test fieldFlowBranchLimit to 1000
Might as well head off future failures in this test Co-authored-by: Anders Schack-Mulligen <[email protected]>
1 parent c5eef7b commit e2aaae8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

java/ql/test/library-tests/frameworks/JaxWs/JaxRsFlow.ql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class TaintFlowConf extends TaintTracking::Configuration {
1313
exists(MethodAccess ma | ma.getMethod().hasName("sink") | n.asExpr() = ma.getAnArgument())
1414
}
1515

16-
override int fieldFlowBranchLimit() { result = 3 }
16+
override int fieldFlowBranchLimit() { result = 1000 }
1717
}
1818

1919
class ValueFlowConf extends DataFlow::Configuration {
@@ -27,7 +27,7 @@ class ValueFlowConf extends DataFlow::Configuration {
2727
exists(MethodAccess ma | ma.getMethod().hasName("sink") | n.asExpr() = ma.getAnArgument())
2828
}
2929

30-
override int fieldFlowBranchLimit() { result = 3 }
30+
override int fieldFlowBranchLimit() { result = 1000 }
3131
}
3232

3333
class HasFlowTest extends InlineExpectationsTest {

0 commit comments

Comments
 (0)