diff --git a/projects/rocprofiler-systems/tests/rocpd-validation-rules/python/python-builtin-rules.json b/projects/rocprofiler-systems/tests/rocpd-validation-rules/python/python-builtin-rules.json index 9fa8eb40c0..fbbe53fab6 100644 --- a/projects/rocprofiler-systems/tests/rocpd-validation-rules/python/python-builtin-rules.json +++ b/projects/rocprofiler-systems/tests/rocpd-validation-rules/python/python-builtin-rules.json @@ -36,7 +36,7 @@ "description": "Verify that percentages sum to 100.", "error_message": "Percentages do not sum to 100.", "expected_result": 100, - "query": "SELECT SUM(percentage) FROM top;" + "query": "SELECT ROUND(SUM(percentage), 1) FROM top;" } ] }, diff --git a/projects/rocprofiler-systems/tests/rocpd-validation-rules/python/python-source-rules.json b/projects/rocprofiler-systems/tests/rocpd-validation-rules/python/python-source-rules.json index 0abc9bc75f..f8f7c5d75d 100644 --- a/projects/rocprofiler-systems/tests/rocpd-validation-rules/python/python-source-rules.json +++ b/projects/rocprofiler-systems/tests/rocpd-validation-rules/python/python-source-rules.json @@ -50,7 +50,7 @@ "description": "Verify that percentages sum to 100.", "error_message": "Percentages do not sum to 100.", "expected_result": 100, - "query": "SELECT SUM(percentage) FROM top;" + "query": "SELECT ROUND(SUM(percentage), 1) FROM top;" } ] },