Skip to content

Commit

Permalink
update: BasicFunctionalityIT
Browse files Browse the repository at this point in the history
  • Loading branch information
AssahBismarkabah committed Sep 3, 2024
1 parent 686cdf1 commit 436e00b
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -203,12 +203,11 @@ void testMultipleRecipientsSharing(WithStorageProvider.StorageDescriptor descrip
init(descriptor);

UserIDAuth owner = registerUser("owner");

UserIDAuth john = registerUser("john");
UserIDAuth jane = registerUser("jane");
UserIDAuth jamie = registerUser("jamie");

String multiShareFile = "multishare.txt";
String multiShareFile = "datasafe-root/multishare.txt"; // Corrected path with prefix
try (OutputStream os = writeToInbox.write(WriteInboxRequest.forDefaultPublic(
owner,
ImmutableSet.of(john.getUserID(), jane.getUserID(), jamie.getUserID()),
Expand All @@ -229,12 +228,11 @@ void testMultipleRecipientsSharingLargeChunk(WithStorageProvider.StorageDescript
init(descriptor);

UserIDAuth owner = registerUser("owner");

UserIDAuth john = registerUser("john");
UserIDAuth jane = registerUser("jane");
UserIDAuth jamie = registerUser("jamie");

String multiShareFile = "multishare.txt";
String multiShareFile = "datasafe-root/multishare.txt"; // Corrected path with prefix
byte[] bytes = new byte[LARGE_SIZE];
ThreadLocalRandom.current().nextBytes(bytes);
try (OutputStream os = writeToInbox.write(WriteInboxRequest.forDefaultPublic(
Expand Down

0 comments on commit 436e00b

Please sign in to comment.