Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicole00 committed Jan 5, 2022
1 parent 83c5f28 commit 1c68cda
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class EdgeProcessorSuite {
"col14")

val processClazz =
new EdgeProcessor(data, edgeConfig, fieldKeys, nebulaKeys, config, null, null)
new EdgeProcessor(null, data, edgeConfig, fieldKeys, nebulaKeys, config, null, null)
@Test
def isEdgeValidSuite(): Unit = {
val stringIdValue = List("Bob", "Tom")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class VerticesProcessorSuite {
"col14")

val processClazz =
new VerticesProcessor(data, tagConfig, fieldKeys, nebulaKeys, config, null, null)
new VerticesProcessor(null, data, tagConfig, fieldKeys, nebulaKeys, config, null, null)
@Test
def isVertexValidSuite(): Unit = {
val stringIdValue = List("Bob")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class EdgeProcessorSuite {
"col14")

val processClazz =
new EdgeProcessor(data, edgeConfig, fieldKeys, nebulaKeys, config, null, null)
new EdgeProcessor(null, data, edgeConfig, fieldKeys, nebulaKeys, config, null, null)
@Test
def isEdgeValidSuite(): Unit = {
val stringIdValue = List("Bob", "Tom")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class VerticesProcessorSuite {
"col14")

val processClazz =
new VerticesProcessor(data, tagConfig, fieldKeys, nebulaKeys, config, null, null)
new VerticesProcessor(null, data, tagConfig, fieldKeys, nebulaKeys, config, null, null)
@Test
def isVertexValidSuite(): Unit = {
val stringIdValue = List("Bob")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class EdgeProcessorSuite {
"col14")

val processClazz =
new EdgeProcessor(data, edgeConfig, fieldKeys, nebulaKeys, config, null, null)
new EdgeProcessor(null, data, edgeConfig, fieldKeys, nebulaKeys, config, null, null)
@Test
def isEdgeValidSuite(): Unit = {
val stringIdValue = List("Bob", "Tom")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class VerticesProcessorSuite {
"col14")

val processClazz =
new VerticesProcessor(data, tagConfig, fieldKeys, nebulaKeys, config, null, null)
new VerticesProcessor(null, data, tagConfig, fieldKeys, nebulaKeys, config, null, null)
@Test
def isVertexValidSuite(): Unit = {
val stringIdValue = List("Bob")
Expand Down

0 comments on commit 1c68cda

Please sign in to comment.