Destutter gremlin

This commit is contained in:
kortschak 2014-06-28 12:55:21 +09:30
parent 388618bfa7
commit 3a673a333c
7 changed files with 43 additions and 43 deletions

View file

@ -35,9 +35,9 @@ import (
// +---+
//
func buildTripleStore() *GremlinSession {
func buildTripleStore() *Session {
ts := memstore.MakeTestingMemstore()
return NewGremlinSession(ts, -1, false)
return NewSession(ts, -1, false)
}
func shouldBeUnordered(actual interface{}, expected ...interface{}) string {
@ -71,7 +71,7 @@ func runQueryGetTag(query string, tag string) ([]string, int) {
}
func ConveyQuery(doc string, query string, expected []string) {
ConveyQueryTag(doc, query, GremlinTopResultTag, expected)
ConveyQueryTag(doc, query, TopResultTag, expected)
}
func ConveyQueryTag(doc string, query string, tag string, expected []string) {