Skip to content

Commit 563c765

Browse files
committed
rename queried_features
1 parent b902185 commit 563c765

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sycl/test-e2e/format.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,12 +116,12 @@ def make_default_features_list(self, expr, triple, add_default=True):
116116
"run-mode": False,
117117
"TEMPORARY_DISABLED": False,
118118
}
119-
queried_features = []
119+
features_queried_by_test = []
120120
for f in expr:
121-
queried_features = queried_features + re.findall("[-+=._a-zA-Z0-9]+", f)
121+
features_queried_by_test = features_queried_by_test + re.findall("[-+=._a-zA-Z0-9]+", f)
122122

123123
features = []
124-
for f in queried_features:
124+
for f in features_queried_by_test:
125125
if exceptions[triple].get(f, exceptions["system"].get(f, add_default)):
126126
features.append(f)
127127
return features

0 commit comments

Comments
 (0)