Description
Following expression in test_policyengine_geo.json fails with JDK17 (script engine from org.graalvm.js):
(!!country_code_format_long && !!country_code_format_dot && (country_code_format_long == country_code_format_dot))
This expression should be updated with:
(country_code_format_long != null && country_code_format_dot != null && (country_code_format_long == country_code_format_dot))