Skip to content

Commit

Permalink
fix: Fix java compilation issues
Browse files Browse the repository at this point in the history
  • Loading branch information
dhedey committed Oct 9, 2024
1 parent fba26af commit f25f757
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ public void transaction_previewed_with_message_consumes_more_cost_units() throws
@SuppressWarnings("DataFlowIssue") // Suppress invalid null reference warnings
@Test
public void transaction_previewed_doesnt_include_toolkit_receipt_by_default() throws Exception {
try (var test = buildRunningServerTest()) {
try (var test = buildRunningServerTest(defaultConfig())) {
test.suppressUnusedWarning();

// Prepare a request with the RET receipt opt-ins
Expand Down Expand Up @@ -365,7 +365,7 @@ public void transaction_previewed_doesnt_include_toolkit_receipt_by_default() th
@SuppressWarnings("DataFlowIssue") // Suppress invalid null reference warnings
@Test
public void transaction_previewed_includes_a_toolkit_receipt_when_requested() throws Exception {
try (var test = buildRunningServerTest()) {
try (var test = buildRunningServerTest(defaultConfig())) {
test.suppressUnusedWarning();

// Prepare a request with the RET receipt opt-ins
Expand Down

0 comments on commit f25f757

Please sign in to comment.