Skip to content

Commit e707275

Browse files
committed
Python: Rename prints tag to flow
The former was a remnant of copying the setup over from `ql/test/experimental/import-resolution/importflow.ql`.
1 parent 3ee369b commit e707275

File tree

2 files changed

+3
-3
lines changed
  • python/ql/test/experimental/import-resolution-namespace-relative

2 files changed

+3
-3
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
def process(value):
2-
sink(value) #$ prints=source
2+
sink(value) #$ flow=source

python/ql/test/experimental/import-resolution-namespace-relative/test.ql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ private module TestConfig implements DataFlow::ConfigSig {
1919
private module TestFlow = TaintTracking::Global<TestConfig>;
2020

2121
module FlowTest implements TestSig {
22-
string getARelevantTag() { result = "prints" }
22+
string getARelevantTag() { result = "flow" }
2323

2424
predicate hasActualResult(Location location, string element, string tag, string value) {
2525
exists(DataFlow::Node sink |
2626
TestFlow::flow(_, sink) and
27-
tag = "prints" and
27+
tag = "flow" and
2828
location = sink.getLocation() and
2929
value = "source" and
3030
element = sink.toString()

0 commit comments

Comments
 (0)