Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
haoxins committed Feb 21, 2024
1 parent 1e964a9 commit a2c2a7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions schema_manager_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ func TestSchemaManagerApplyEdge(t *testing.T) {
},
},
}
_, err = schemaManager.ApplyTag(edgeSchema)
_, err = schemaManager.ApplyEdge(edgeSchema)
if err != nil {
t.Fatal(err)
}
Expand Down Expand Up @@ -254,7 +254,7 @@ func TestSchemaManagerApplyEdge(t *testing.T) {
}
assert.Equal(t, 1, len(edges))
assert.Equal(t, "account_email", edges[0].Name)
labels, err = sessionPool.DescTag("account_email")
labels, err = sessionPool.DescEdge("account_email")
if err != nil {
t.Fatal(err)
}
Expand Down

0 comments on commit a2c2a7e

Please sign in to comment.