Skip to content

Commit

Permalink
Fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
jacodg committed May 7, 2024
1 parent c2ad2e1 commit dff97b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/nl/nn/testtool/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ DataSource ladybugDataSource() {
@Scope("prototype")
// Prefix with ladybug to prevent interference with other beans of the application that is using Ladybug. E.g. in
// F!F matrix test several combination fail with 5 scenarios failed (all JMS related)
TransactionManager ladybugTransactionManager(DataSource dataSource) {
TransactionManager ladybugTransactionManager(DataSource ladybugDataSource) {
OptionalJtaTransactionManager optionalJtaTransactionManager = new OptionalJtaTransactionManager();
optionalJtaTransactionManager.setDataSource(ladybugDataSource);
return optionalJtaTransactionManager;
Expand Down

0 comments on commit dff97b4

Please sign in to comment.