diff --git a/java/ql/integration-tests/all-platforms/java/properties-files/weak-hashing/test.ql b/java/ql/integration-tests/all-platforms/java/properties-files/weak-hashing/test.ql index 43876fb99e0..6a932e8012d 100644 --- a/java/ql/integration-tests/all-platforms/java/properties-files/weak-hashing/test.ql +++ b/java/ql/integration-tests/all-platforms/java/properties-files/weak-hashing/test.ql @@ -1,7 +1,7 @@ import java import semmle.code.java.dataflow.DataFlow -import semmle.code.java.security.WeakHashingAlgorithmPropertyQuery +import semmle.code.java.security.MaybeBrokenCryptoAlgorithmQuery query predicate weakAlgorithmUse(DataFlow::Node sink) { - exists(DataFlow::Node source | InsecureAlgorithmPropertyFlow::flow(source, sink)) + exists(DataFlow::Node source | InsecureCryptoFlow::flow(source, sink)) }