Skip to content

Commit

Permalink
fix: tests-spec error for bool
Browse files Browse the repository at this point in the history
  • Loading branch information
ManasviGoyal committed Jun 18, 2024
1 parent 8e926ab commit a98503d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev/generate-tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ def gettypeval(typename):
if "int" in typename:
typeval = 123
elif "bool" in typename:
typeval = True
typeval = 1
elif "double" in typename or "float" in typename:
typeval = 123.0
else:
Expand Down

0 comments on commit a98503d

Please sign in to comment.