Skip to content

Commit c145678

Browse files
committed
Java: Address review comments.
1 parent cd0d09d commit c145678

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

java/ql/src/utils/flowtestcasegenerator/GenerateFlowTestCase.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def qualifiedOuterNameFromCsvRow(row):
131131
os.makedirs(queryDir)
132132
qlFile = os.path.join(queryDir, "gen.ql")
133133
with open(os.path.join(queryDir, "qlpack.yml"), "w") as f:
134-
f.write(f"""name: test-generation-query
134+
f.write("""name: test-generation-query
135135
version: 0.0.0
136136
dependencies:
137137
codeql/java-all: '*'
@@ -233,7 +233,7 @@ def copyfile(fromName, toFileHandle):
233233
f.write(dataextensions)
234234
# Make a qlpack file such that the extension will be picked up
235235
with open(resultPack, "w") as f:
236-
f.write(f"""name: example-test-pack
236+
f.write("""name: example-test-pack
237237
version: 0.0.0
238238
extractor: java
239239
dependencies:

0 commit comments

Comments
 (0)