Fixed test which was failing due to an earlier commit

This commit is contained in:
CalDescent 2021-11-07 18:41:52 +00:00
parent 991125034e
commit b5feb5f733

View File

@ -101,7 +101,7 @@ public class ArbitraryDataTests extends Common {
fail("Creating transaction should fail due to nonexistent PUT transaction"); fail("Creating transaction should fail due to nonexistent PUT transaction");
} catch (DataException expectedException) { } catch (DataException expectedException) {
assertEquals(String.format("Unable to create arbitrary data file: Couldn't find PUT transaction for " + assertEquals(String.format("Couldn't find PUT transaction for " +
"name %s and service %s", name, service), expectedException.getMessage()); "name %s and service %s", name, service), expectedException.getMessage());
} }