From 959c6315c41ae2dfa9a3445d3ee6ca863ad8a1f3 Mon Sep 17 00:00:00 2001 From: Rasmus Lerchedahl Petersen Date: Mon, 10 Aug 2020 09:24:45 +0200 Subject: [PATCH] Python: update reference to fix tests --- python/ql/test/experimental/dataflow/basic/callGraphSinks.ql | 2 +- python/ql/test/experimental/dataflow/basic/callGraphSources.ql | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/python/ql/test/experimental/dataflow/basic/callGraphSinks.ql b/python/ql/test/experimental/dataflow/basic/callGraphSinks.ql index 020ea245cfd..7d15b353274 100644 --- a/python/ql/test/experimental/dataflow/basic/callGraphSinks.ql +++ b/python/ql/test/experimental/dataflow/basic/callGraphSinks.ql @@ -1,4 +1,4 @@ -import callGraphConfig +import experimental.dataflow.callGraphConfig from DataFlow::Node sink where exists(CallGraphConfig cfg | cfg.isSink(sink)) diff --git a/python/ql/test/experimental/dataflow/basic/callGraphSources.ql b/python/ql/test/experimental/dataflow/basic/callGraphSources.ql index a6bd5538866..21c3a5a9ace 100644 --- a/python/ql/test/experimental/dataflow/basic/callGraphSources.ql +++ b/python/ql/test/experimental/dataflow/basic/callGraphSources.ql @@ -1,4 +1,4 @@ -import callGraphConfig +import experimental.dataflow.callGraphConfig from DataFlow::Node source where exists(CallGraphConfig cfg | cfg.isSource(source))