Skip to content

Commit

Permalink
leave original behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
mgyucht committed Aug 28, 2023
1 parent e2aca56 commit 1ca49f3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ private void writeFileAndReadFileInner(
WorkspaceClient workspace, String schemaName, String volumeName) throws IOException {
// Generate a random file name and random contents of 10 KiB.
String fileName =
NameUtils.uniqueName("Volumes/main/" + schemaName + "/" + volumeName + "/test");
NameUtils.uniqueName("/Volumes/main/" + schemaName + "/" + volumeName + "/test");
byte[] fileContents = new byte[1024 * 10];
for (int i = 0; i < fileContents.length; i++) {
fileContents[i] = (byte) (i & 0xFF);
Expand Down

0 comments on commit 1ca49f3

Please sign in to comment.