Skip to content

Commit a98503d

Browse files
committed
fix: tests-spec error for bool
1 parent 8e926ab commit a98503d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dev/generate-tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ def gettypeval(typename):
390390
if "int" in typename:
391391
typeval = 123
392392
elif "bool" in typename:
393-
typeval = True
393+
typeval = 1
394394
elif "double" in typename or "float" in typename:
395395
typeval = 123.0
396396
else:

0 commit comments

Comments
 (0)