Skip to content

Commit

Permalink
Fix some IDE warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
rieske committed Nov 2, 2023
1 parent 61eefe5 commit e7b5320
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class FieldExtensionLifecycleTests {
@Nested
class PerMethodTests {
@RegisterExtension
private final DatabaseTestExtension database =
final DatabaseTestExtension database =
new FlywayPostgreSQLFastTestExtension(PostgreSQLTest.postgresVersion(), DatabaseTestExtension.Mode.DATABASE_PER_TEST_METHOD);

private final TestRepository repository = new TestRepository(database.getDataSource());
Expand All @@ -31,7 +31,7 @@ void interactWithDatabase() {
@Nested
class PerClassTests {
@RegisterExtension
private final DatabaseTestExtension database =
final DatabaseTestExtension database =
new FlywayPostgreSQLFastTestExtension(PostgreSQLTest.postgresVersion(), DatabaseTestExtension.Mode.DATABASE_PER_TEST_CLASS);

private final EarlyDatabaseExtensionUser exceptionSupplier = new EarlyDatabaseExtensionUser(database);
Expand All @@ -58,7 +58,7 @@ class EarlyDatabaseExtensionUser {
@Nested
class PerExecutionTests {
@RegisterExtension
private final DatabaseTestExtension database =
final DatabaseTestExtension database =
new FlywayPostgreSQLFastTestExtension(PostgreSQLTest.postgresVersion(), DatabaseTestExtension.Mode.DATABASE_PER_EXECUTION);

private final TestRepository repository = new TestRepository(database.getDataSource());
Expand Down

0 comments on commit e7b5320

Please sign in to comment.