This is an automated email from the ASF dual-hosted git repository.

asolimando pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/calcite.git


The following commit(s) were added to refs/heads/main by this push:
     new 229ffcb654 [CALCITE-7179] Improve error message for QuidemTest
229ffcb654 is described below

commit 229ffcb654c9af3387d3835d65947eed794fd614
Author: Alessandro Solimando <[email protected]>
AuthorDate: Thu Sep 11 22:51:42 2025 +0200

    [CALCITE-7179] Improve error message for QuidemTest
---
 testkit/src/main/java/org/apache/calcite/test/QuidemTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/testkit/src/main/java/org/apache/calcite/test/QuidemTest.java 
b/testkit/src/main/java/org/apache/calcite/test/QuidemTest.java
index 244735dc6a..83419d6fb7 100644
--- a/testkit/src/main/java/org/apache/calcite/test/QuidemTest.java
+++ b/testkit/src/main/java/org/apache/calcite/test/QuidemTest.java
@@ -272,7 +272,7 @@ protected void checkRun(String path) throws Exception {
     }
     final String diff = DiffTestCase.diff(inFile, outFile);
     if (!diff.isEmpty()) {
-      fail("Files differ: " + outFile + " " + inFile + "\n"
+      fail("Files differ:\ndiff " + inFile + " " + outFile + "\n"
           + diff);
     }
   }

Reply via email to