Skip to content

Commit 4a40b53

Browse files
authored
Fix Files API integration test (#150)
## Changes The order of required args to create a volume was updated in #148. ## Tests Integration tests now pass.
1 parent 6ee0ff7 commit 4a40b53

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

databricks-sdk-java/src/test/java/com/databricks/sdk/integration/framework/ResourceWithCleanup.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public static ResourceWithCleanup makeSchema(
3232

3333
public static ResourceWithCleanup makeVolume(
3434
VolumesAPI volumesAPI, String catalogName, String schemaName, String volumeName) {
35-
volumesAPI.create(catalogName, volumeName, schemaName, VolumeType.MANAGED);
35+
volumesAPI.create(catalogName, schemaName, volumeName, VolumeType.MANAGED);
3636
return new ResourceWithCleanup(
3737
() -> volumesAPI.delete(catalogName + "." + schemaName + "." + volumeName));
3838
}

0 commit comments

Comments
 (0)