Skip to content
This repository was archived by the owner on Oct 7, 2020. It is now read-only.

Commit ee58e88

Browse files
author
Eric Solender
committed
updated test
1 parent b5bafe8 commit ee58e88

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

client_test.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ func TestClient(t *testing.T) {
3030
}
3131

3232
log.Infof("executing query")
33-
rows, err := conn.Query("create (:Fuck)", nil)
33+
rows, err := conn.Query("create (:TestNode{uuid:$id})", map[string]interface{}{
34+
"id": "random_id",
35+
})
3436
if err != nil {
3537
t.Log(err)
3638
t.FailNow()

0 commit comments

Comments
 (0)