diff --git a/jOOQ-test/src/org/jooq/test/jOOQAbstractTest.java b/jOOQ-test/src/org/jooq/test/jOOQAbstractTest.java index 572ad2730d..0b685d2c66 100644 --- a/jOOQ-test/src/org/jooq/test/jOOQAbstractTest.java +++ b/jOOQ-test/src/org/jooq/test/jOOQAbstractTest.java @@ -1501,6 +1501,11 @@ public abstract class jOOQAbstractTest< new AggregateWindowFunctionTests(this).testListAgg(); } + @Test + public void testWindowFunctions() throws Exception { + new AggregateWindowFunctionTests(this).testWindowFunctions(); + } + @Test public void testStoredFunctions() throws Exception { new RoutineAndUDTTests(this).testStoredFunctions(); @@ -1646,11 +1651,6 @@ public abstract class jOOQAbstractTest< new GeneralTests(this).testDual(); } - @Test - public void testWindowFunctions() throws Exception { - new AggregateWindowFunctionTests(this).testWindowFunctions(); - } - @Test public void testPackage() throws Exception { new RoutineAndUDTTests(this).testPackage();