Skip to content

Commit 31377fc

Browse files
committed
fixed PR comments
1 parent f2b4436 commit 31377fc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

client_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ func TestCreateIndex(t *testing.T) {
290290
if err != nil {
291291
t.Error(err)
292292
}
293-
assert.Equal(t, 0, res.IndicesCreated(), "Expecting 1 index deleted")
293+
assert.Equal(t, 1, res.IndicesDeleted(), "Expecting 1 index deleted")
294294

295295
_, err = graph.Query("DROP INDEX ON :user(name)")
296296
assert.Equal(t, err.Error(), "ERR Unable to drop index on :user(name): no such index.")

query_result.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const (
1818
PROPERTIES_SET string = "Properties set"
1919
RELATIONSHIPS_CREATED string = "Relationships created"
2020
INDICES_CREATED string = "Indices created"
21-
INDICES_DELETED string = "Indices deleted"
21+
INDICES_DELETED string = "Indices deleted"
2222
INTERNAL_EXECUTION_TIME string = "internal execution time"
2323
)
2424

0 commit comments

Comments
 (0)