Skip to content

Commit

Permalink
Fix Files API integration test
Browse files Browse the repository at this point in the history
The order of required args to create a volume was updated in #148.
  • Loading branch information
pietern committed Sep 8, 2023
1 parent 6ee0ff7 commit d7c47f1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public static ResourceWithCleanup makeSchema(

public static ResourceWithCleanup makeVolume(
VolumesAPI volumesAPI, String catalogName, String schemaName, String volumeName) {
volumesAPI.create(catalogName, volumeName, schemaName, VolumeType.MANAGED);
volumesAPI.create(catalogName, schemaName, volumeName, VolumeType.MANAGED);
return new ResourceWithCleanup(
() -> volumesAPI.delete(catalogName + "." + schemaName + "." + volumeName));
}
Expand Down

0 comments on commit d7c47f1

Please sign in to comment.