|
1 | 1 | /* |
2 | | - * Copyright 2012-2024 the original author or authors. |
| 2 | + * Copyright 2012-2025 the original author or authors. |
3 | 3 | * |
4 | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
5 | 5 | * you may not use this file except in compliance with the License. |
@@ -39,12 +39,12 @@ class DataSourceBuilderRuntimeHintsTests { |
39 | 39 | void shouldRegisterDataSourceConstructors() { |
40 | 40 | ReflectionHints hints = registerHints(); |
41 | 41 | Stream |
42 | | - .of(com.mchange.v2.c3p0.ComboPooledDataSource.class, org.h2.jdbcx.JdbcDataSource.class, |
43 | | - com.zaxxer.hikari.HikariDataSource.class, org.apache.commons.dbcp2.BasicDataSource.class, |
| 42 | + .of(com.mchange.v2.c3p0.ComboPooledDataSource.class, com.zaxxer.hikari.HikariDataSource.class, |
44 | 43 | oracle.jdbc.datasource.OracleDataSource.class, oracle.ucp.jdbc.PoolDataSource.class, |
45 | | - org.vibur.dbcp.ViburDBCPDataSource.class, org.postgresql.ds.PGSimpleDataSource.class, |
| 44 | + org.apache.commons.dbcp2.BasicDataSource.class, org.apache.tomcat.jdbc.pool.DataSource.class, |
| 45 | + org.h2.jdbcx.JdbcDataSource.class, org.postgresql.ds.PGSimpleDataSource.class, |
46 | 46 | org.springframework.jdbc.datasource.SimpleDriverDataSource.class, |
47 | | - org.apache.tomcat.jdbc.pool.DataSource.class) |
| 47 | + org.vibur.dbcp.ViburDBCPDataSource.class) |
48 | 48 | .forEach((dataSourceType) -> { |
49 | 49 | TypeHint typeHint = hints.getTypeHint(dataSourceType); |
50 | 50 | assertThat(typeHint).withFailMessage(() -> "No hints found for data source type " + dataSourceType) |
|
0 commit comments