Skip to content

Commit 9229b77

Browse files
committed
f test pascal case alert
1 parent df9d7b1 commit 9229b77

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

python/ql/test/extractor-tests/overlay/basic-full-eval/test.expected

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ testFiles
7171
| hello.py:0:0:0:0 | hello.py |
7272
| lib/__init__.py:0:0:0:0 | lib/__init__.py |
7373
| new.py:0:0:0:0 | new.py |
74-
testCFGNodes
74+
testCfgNodes
7575
| greeting.py:0:0:0:0 | Entry node for Module greeting |
7676
| greeting.py:0:0:0:0 | Exit node for Module greeting |
7777
| greeting.py:1:1:1:17 | ControlFlowNode for from new import * |
@@ -123,7 +123,7 @@ testCFGNodes
123123
| new.py:1:5:1:18 | ControlFlowNode for get_new_target |
124124
| new.py:2:5:2:15 | ControlFlowNode for Return |
125125
| new.py:2:12:2:15 | ControlFlowNode for StringLiteral |
126-
testSSAVars
126+
testSsaVars
127127
| file://:0:0:0:0 | SSA Variable __name__ |
128128
| file://:0:0:0:0 | SSA Variable get_greeting |
129129
| file://:0:0:0:0 | SSA Variable print |

python/ql/test/extractor-tests/overlay/basic-full-eval/test.ql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ query predicate testLocations(Location l) { l.toString().matches("%_src%") }
3131

3232
query predicate testFiles(File f) { f.toString().matches("%_src%") }
3333

34-
query predicate testCFGNodes(ControlFlowNode n) {
34+
query predicate testCfgNodes(ControlFlowNode n) {
3535
not exists(n.getLocation())
3636
or
3737
n.getLocation().toString().matches("%_src%")
3838
}
3939

40-
query predicate testSSAVars(SsaVariable var) {
40+
query predicate testSsaVars(SsaVariable var) {
4141
not exists(var.getLocation()) and
4242
var.getVariable().getScope().getLocation().toString().matches("%_src%")
4343
or

python/ql/test/extractor-tests/overlay/basic-overlay-eval/test.expected

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ testFiles
7171
| hello.py:0:0:0:0 | hello.py |
7272
| lib/__init__.py:0:0:0:0 | lib/__init__.py |
7373
| new.py:0:0:0:0 | new.py |
74-
testCFGNodes
74+
testCfgNodes
7575
| greeting.py:0:0:0:0 | Entry node for Module greeting |
7676
| greeting.py:0:0:0:0 | Exit node for Module greeting |
7777
| greeting.py:1:1:1:17 | ControlFlowNode for from new import * |
@@ -123,7 +123,7 @@ testCFGNodes
123123
| new.py:1:5:1:18 | ControlFlowNode for get_new_target |
124124
| new.py:2:5:2:15 | ControlFlowNode for Return |
125125
| new.py:2:12:2:15 | ControlFlowNode for StringLiteral |
126-
testSSAVars
126+
testSsaVars
127127
| file://:0:0:0:0 | SSA Variable __name__ |
128128
| file://:0:0:0:0 | SSA Variable get_greeting |
129129
| file://:0:0:0:0 | SSA Variable print |

python/ql/test/extractor-tests/overlay/basic-overlay-eval/test.ql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ query predicate testLocations(Location l) { l.toString().matches("%_src%") }
3131

3232
query predicate testFiles(File f) { f.toString().matches("%_src%") }
3333

34-
query predicate testCFGNodes(ControlFlowNode n) {
34+
query predicate testCfgNodes(ControlFlowNode n) {
3535
not exists(n.getLocation())
3636
or
3737
n.getLocation().toString().matches("%_src%")
3838
}
3939

40-
query predicate testSSAVars(SsaVariable var) {
40+
query predicate testSsaVars(SsaVariable var) {
4141
not exists(var.getLocation()) and
4242
var.getVariable().getScope().getLocation().toString().matches("%_src%")
4343
or

0 commit comments

Comments
 (0)