Skip to content

Commit

Permalink
Fixed syntax bug in test
Browse files Browse the repository at this point in the history
  • Loading branch information
falaki committed Oct 11, 2016
1 parent 83726fc commit 9e621eb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions R/pkg/DESCRIPTION
Expand Up @@ -11,7 +11,8 @@ Authors@R: c(person("Shivaram", "Venkataraman", role = c("aut", "cre"),
email = "felixcheung@apache.org"),
person(family = "The Apache Software Foundation", role = c("aut", "cph")))
URL: http://www.apache.org/ http://spark.apache.org/
BugReports: https://cwiki.apache.org/confluence/display/SPARK/Contributing+to+Spark#ContributingtoSpark-ContributingBugReports
BugReports: https://cwiki.apache.org/confluence/display/SPARK/Contributing+to
+Spark#ContributingtoSpark-ContributingBugReports
Depends:
R (>= 3.0),
methods
Expand All @@ -25,10 +26,10 @@ Collate:
'schema.R'
'generics.R'
'jobj.R'
'column.R'
'group.R'
'RDD.R'
'pairRDD.R'
'column.R'
'group.R'
'DataFrame.R'
'SQLContext.R'
'WindowSpec.R'
Expand Down
2 changes: 1 addition & 1 deletion R/pkg/inst/tests/testthat/test_sparkSQL.R
Expand Up @@ -381,7 +381,7 @@ test_that("create DataFrame with different data types", {

test_that("SPARK-17811: can create DataFrame containing NA as date and time", {
df <- data.frame(
id: 1:2,
id = 1:2,
time = c(as.POSIXlt("2016-01-10"), NA),
date = c(as.Date("2016-10-01"), NA))

Expand Down

0 comments on commit 9e621eb

Please sign in to comment.