Skip to content

Commit 1e4ef93

Browse files
committed
Fix formatting
1 parent e8213bf commit 1e4ef93

1 file changed

Lines changed: 1 addition & 9 deletions

File tree

packages/graph/src/test/ValueTraversal.test.ts

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -195,15 +195,7 @@ test("ValueTraversal Operations - order() operation - order().by(property) sorts
195195
});
196196

197197
test("ValueTraversal Operations - property() operation - property() after values() extracts element properties", () => {
198-
const names = Array.from(
199-
g
200-
.V()
201-
.hasLabel("Person")
202-
.order()
203-
.by("name")
204-
.values()
205-
.property("name"),
206-
);
198+
const names = Array.from(g.V().hasLabel("Person").order().by("name").values().property("name"));
207199

208200
expect(names).toEqual(["Alice", "Bob", "Charlie", "Dave", "Erin", "Fiona", "George"]);
209201
});

0 commit comments

Comments
 (0)