diff --git a/apitest/src/test/java/bisq/apitest/method/BitcoinCliHelper.java b/apitest/src/test/java/bisq/apitest/method/BitcoinCliHelper.java index 45edf41579..6e5b52080f 100644 --- a/apitest/src/test/java/bisq/apitest/method/BitcoinCliHelper.java +++ b/apitest/src/test/java/bisq/apitest/method/BitcoinCliHelper.java @@ -42,7 +42,7 @@ public final class BitcoinCliHelper { BitcoinCli newAddress = new BitcoinCli(config, "getnewaddress").run(); if (newAddress.isError()) - fail(format("Could generate new bitcoin address:%n%s", newAddress.getErrorMessage())); + fail(format("Could not generate new bitcoin address:%n%s", newAddress.getErrorMessage())); return newAddress.getOutput(); } catch (IOException | InterruptedException ex) {