Skip to content

Commit 8d47c49

Browse files
committed
remove non-sensical test
1 parent a141bb4 commit 8d47c49

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

gremlin-scala/src/test/scala/gremlin/scala/ProjectSpec.scala

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,6 @@ import org.scalatest.{Matchers, WordSpec}
55

66
class ProjectSpec extends WordSpec with Matchers {
77

8-
"projecting by one thing" in {
9-
// val result: String = //fails
10-
// val result: (String) = //fails
11-
val result: Tuple1[String] =
12-
// val result =
13-
graph.V
14-
.has(name.of("marko"))
15-
.project(_(By(name)))
16-
.head
17-
println(result) //(marko)
18-
println(result.getClass) // scala.Tuple1
19-
}
20-
218
"projecting by two traversals" in {
229
val result: (java.lang.Long, java.lang.Long) =
2310
graph.V

0 commit comments

Comments
 (0)