From 0929147b08489de596e5765b701c4604fe92f003 Mon Sep 17 00:00:00 2001 From: rob bygrave Date: Fri, 18 Oct 2019 17:23:31 +1300 Subject: [PATCH] No effective change - tidy test TestQueryFindPagedList --- .../org/tests/query/TestQueryFindPagedList.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/test/java/org/tests/query/TestQueryFindPagedList.java b/src/test/java/org/tests/query/TestQueryFindPagedList.java index 8fe837988..4efeebeeb 100644 --- a/src/test/java/org/tests/query/TestQueryFindPagedList.java +++ b/src/test/java/org/tests/query/TestQueryFindPagedList.java @@ -38,13 +38,13 @@ public class TestQueryFindPagedList extends BaseTestCase { } @Test(expected = PersistenceException.class) - public void test_noMaxRows() throws ExecutionException, InterruptedException { + public void test_noMaxRows() { Ebean.find(Order.class).findPagedList(); } @Test - public void test_maxRows_NoCount() throws ExecutionException, InterruptedException { + public void test_maxRows_NoCount() { ResetBasicData.reset(); @@ -86,7 +86,7 @@ public class TestQueryFindPagedList extends BaseTestCase { } @Test - public void test_maxRows_countInBackground_withLoadRowCount() throws InterruptedException { + public void test_maxRows_countInBackground_withLoadRowCount() { ResetBasicData.reset(); @@ -154,7 +154,7 @@ public class TestQueryFindPagedList extends BaseTestCase { } @Test - public void test_noCount() throws ExecutionException, InterruptedException { + public void test_noCount() { ResetBasicData.reset(); @@ -192,7 +192,7 @@ public class TestQueryFindPagedList extends BaseTestCase { @Test - public void test_countInBackground_withLoadRowCount() throws InterruptedException { + public void test_countInBackground_withLoadRowCount() { ResetBasicData.reset(); @@ -208,7 +208,7 @@ public class TestQueryFindPagedList extends BaseTestCase { @Test - public void test_countUsingForegound() throws ExecutionException, InterruptedException { + public void test_countUsingForegound() { ResetBasicData.reset(); @@ -246,7 +246,7 @@ public class TestQueryFindPagedList extends BaseTestCase { @Test - public void test_usingAlias() throws ExecutionException, InterruptedException { + public void test_usingAlias() { ResetBasicData.reset();