failure no longer expected for test

This commit is contained in:
Gavin 2023-05-31 22:07:13 +02:00 committed by Gavin King
parent 37c071fa20
commit 3af493a344
1 changed files with 2 additions and 1 deletions

View File

@ -53,7 +53,7 @@ public class BasicFormatterTest extends BaseUnitTestCase {
}
@Test
@FailureExpected( jiraKey = "HHH-15125")
// @FailureExpected( jiraKey = "HHH-15125")
public void testProblematic() {
assertNoLoss( "select * from ((select e.id from Entity e union all select e.id from Entity e) union select e.id from Entity e) grp" );
}
@ -65,6 +65,7 @@ public class BasicFormatterTest extends BaseUnitTestCase {
log.debugf( "Original: {}", query );
log.debugf( "Formatted: {}", formattedQuery );
System.out.println( formattedQuery );
while ( formatted.hasMoreTokens() && plain.hasMoreTokens() ) {
String plainToken = plain.nextToken();