Skip to content

Commit

Permalink
use valid jinja
Browse files Browse the repository at this point in the history
  • Loading branch information
czoido committed Oct 23, 2024
1 parent c5551b8 commit 7481a17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/functional/test_profile_detect_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def test_profile_detect_compiler(self):
compiler.runtime={{runtime}}
compiler.cppstd={{detect_api.default_cppstd(compiler, version)}}
# FIXME: check if we can do something better than this, we have a problem with updates
compiler.update={{str(int(detect_api.detect_msvc_update(version)) % 10)}}
compiler.update={{ (detect_api.detect_msvc_update(version) | int) % 10 }}
[conf]
tools.microsoft.msbuild:vs_version={{detect_api.default_msvc_ide_version(version)}}
Expand Down

0 comments on commit 7481a17

Please sign in to comment.