diff --git a/spring-batch-samples/src/test/java/org/springframework/batch/sample/TradeJobFunctionalTests.java b/spring-batch-samples/src/test/java/org/springframework/batch/sample/TradeJobFunctionalTests.java index 2280ed449..da3a1ea09 100644 --- a/spring-batch-samples/src/test/java/org/springframework/batch/sample/TradeJobFunctionalTests.java +++ b/spring-batch-samples/src/test/java/org/springframework/batch/sample/TradeJobFunctionalTests.java @@ -35,8 +35,8 @@ import org.springframework.jdbc.core.RowCallbackHandler; public class TradeJobFunctionalTests extends AbstractValidatingBatchLauncherTests { - private static final String GET_TRADES = "SELECT isin, quantity, price, customer FROM trade"; - private static final String GET_CUSTOMERS = "SELECT name, credit FROM customer"; + private static final String GET_TRADES = "select ISIN, QUANTITY, PRICE, CUSTOMER from TRADE order by ISIN"; + private static final String GET_CUSTOMERS = "select NAME, CREDIT from CUSTOMER order by NAME"; private List customers; private List trades;