Skip to content

Commit 3819a36

Browse files
committed
Python: Autoformat
1 parent 7f119dd commit 3819a36

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

python/ql/test/experimental/dataflow/sensitive-data/TestSensitiveDataSources.ql

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,10 @@ class SensitiveDataSourcesTest extends InlineExpectationsTest {
1313
override predicate hasActualResult(Location location, string element, string tag, string value) {
1414
exists(location.getFile().getRelativePath()) and
1515
exists(SensitiveDataSource source |
16-
(
17-
location = source.getLocation() and
18-
element = source.toString() and
19-
value = source.getClassification() and
20-
tag = "SensitiveDataSource"
21-
)
16+
location = source.getLocation() and
17+
element = source.toString() and
18+
value = source.getClassification() and
19+
tag = "SensitiveDataSource"
2220
or
2321
exists(DataFlow::Node use |
2422
use = API::builtin("print").getACall().getArg(_) and
@@ -27,7 +25,6 @@ class SensitiveDataSourcesTest extends InlineExpectationsTest {
2725
element = use.toString() and
2826
value = source.getClassification() and
2927
tag = "SensitiveUse"
30-
3128
)
3229
)
3330
}

0 commit comments

Comments
 (0)