Hi, Please find the attached patch to fix the syntax error on python 2.7 for the feature test case. The cause of this is the print function is not compatible with python 2.7 which has been fixed.
Thanks, Khushboo
diff --git a/web/pgadmin/feature_tests/xss_checks_panels_and_query_tool_test.py b/web/pgadmin/feature_tests/xss_checks_panels_and_query_tool_test.py index c63ae6c5..27ac8c2c 100644 --- a/web/pgadmin/feature_tests/xss_checks_panels_and_query_tool_test.py +++ b/web/pgadmin/feature_tests/xss_checks_panels_and_query_tool_test.py @@ -7,6 +7,7 @@ # ########################################################################## +from __future__ import print_function from regression.python_test_utils import test_utils from regression.feature_utils.base_feature_test import BaseFeatureTest from selenium.webdriver import ActionChains