Skip to content

Commit

Permalink
Fix drop table command
Browse files Browse the repository at this point in the history
  • Loading branch information
shivaram committed Dec 15, 2016
1 parent ac05089 commit 2583410
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/pkg/inst/tests/testthat/test_sparkSQL.R
Original file line number Diff line number Diff line change
Expand Up @@ -2170,7 +2170,7 @@ test_that("Default warehouse dir should be set to tempdir", {
inital_working_directory_files <- list.files()
result <- sql("CREATE TABLE warehouse")
expect_equal(inital_working_directory_files, list.files())
result <- sql("DELETE TABLE warehouse")
result <- sql("DROP TABLE warehouse")
})

irisDF <- suppressWarnings(createDataFrame(iris))
Expand Down

0 comments on commit 2583410

Please sign in to comment.