Skip to content

Commit

Permalink
Fixing some more errors in the mongo core engine implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
kellrott committed Jan 11, 2020
1 parent 515296c commit e40641d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion conformance/tests/ot_select.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def test_simple(O):
if row.label != "Reaction":
errors.append("Wrong node label")
if count != 4:
errors.append("Incorrect count")
errors.append("Incorrect count %d != %d" % (count, 4))
return errors


Expand Down
1 change: 1 addition & 0 deletions mongo/index.go
Original file line number Diff line number Diff line change
Expand Up @@ -304,6 +304,7 @@ func (mg *Graph) VertexLabelScan(ctx context.Context, label string) chan string
default:
}
cursor.Decode(&result)
out <- result["_id"].(string)
//BUG: return stuff here
}
if err := cursor.Close(context.TODO()); err != nil {
Expand Down

0 comments on commit e40641d

Please sign in to comment.