Skip to content

Commit

Permalink
fix data path
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicole00 committed Oct 19, 2021
1 parent 50b726d commit aa808d1
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ object SparkMock {

val df = spark.read
.option("header", true)
.csv("nebula-spark-connector/src/test/resources/vertex.csv")
.csv("src/test/resources/vertex.csv")

val config =
NebulaConnectionConfig
Expand Down Expand Up @@ -73,7 +73,7 @@ object SparkMock {

val df = spark.read
.option("header", true)
.csv("nebula-spark-connector/src/test/resources/vertex.csv")
.csv("src/test/resources/vertex.csv")

val config =
NebulaConnectionConfig
Expand Down Expand Up @@ -112,7 +112,7 @@ object SparkMock {

val df = spark.read
.option("header", true)
.csv("nebula-spark-connector/src/test/resources/edge.csv")
.csv("src/test/resources/edge.csv")

val config =
NebulaConnectionConfig
Expand Down Expand Up @@ -152,7 +152,7 @@ object SparkMock {

val df = spark.read
.option("header", true)
.csv("nebula-spark-connector/src/test/resources/edge.csv")
.csv("src/test/resources/edge.csv")

val config =
NebulaConnectionConfig
Expand Down

0 comments on commit aa808d1

Please sign in to comment.