3
0
mirror of https://github.com/Qortal/qortal.git synced 2025-02-12 18:25:49 +00:00

Minor change to test account assertion message.

This commit is contained in:
catbref 2019-06-21 07:32:28 +01:00
parent 99ffd62a6e
commit 48eae0cb38

View File

@ -114,7 +114,7 @@ public class Common {
// Check that each test account can fetch their last reference
for (TestAccount testAccount : getTestAccounts(repository))
assertNotNull(String.format("Test account '%s' should have existing transaction", testAccount.accountName), testAccount.getLastReference());
assertNotNull(String.format("Test account %s / %s should have last reference", testAccount.accountName, testAccount.getAddress()), testAccount.getLastReference());
}
}