Fix api post integration tests (#371)

This commit is contained in:
Kartik Gupta 2023-05-01 11:10:02 +02:00 committed by GitHub
parent 17910cf11b
commit 5fc7cd0adf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -41,11 +41,11 @@ func TestAccApiPost(t *testing.T) {
// Post to mkdir // Post to mkdir
{ {
RequireSuccessfulRun(t, "api", "post", "--body=@"+requestPath, "/api/2.0/dbfs/mkdirs") RequireSuccessfulRun(t, "api", "post", "--json=@"+requestPath, "/api/2.0/dbfs/mkdirs")
} }
// Post to delete // Post to delete
{ {
RequireSuccessfulRun(t, "api", "post", "--body=@"+requestPath, "/api/2.0/dbfs/delete") RequireSuccessfulRun(t, "api", "post", "--json=@"+requestPath, "/api/2.0/dbfs/delete")
} }
} }