Skip to content

Commit 205e74b

Browse files
committed
Renamed test due to Reverted RO_Graph to Go naming convention
1 parent 84473a4 commit 205e74b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

client_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ func TestMatchQuery(t *testing.T) {
6868
checkQueryResults(t, res)
6969
}
7070

71-
func TestMatchRO_Query(t *testing.T) {
71+
func TestMatchROQuery(t *testing.T) {
7272
q := "MATCH (s)-[e]->(d) RETURN s,e,d"
7373
res, err := graph.ROQuery(q)
7474
if err != nil {
@@ -134,7 +134,7 @@ func TestCreateQuery(t *testing.T) {
134134
assert.Equal(t, w.Label, "WorkPlace", "Unexpected node label.")
135135
}
136136

137-
func TestCreateRO_QueryFailure(t *testing.T) {
137+
func TestCreateROQueryFailure(t *testing.T) {
138138
q := "CREATE (w:WorkPlace {name:'RedisLabs'})"
139139
_, err := graph.ROQuery(q)
140140
assert.NotNil(t, err, "error should not be nil")

0 commit comments

Comments
 (0)