Skip to content
This repository has been archived by the owner on Dec 5, 2023. It is now read-only.

Commit

Permalink
Removed unnecessary brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Kleppmann committed Jun 14, 2009
1 parent 0ddbe09 commit fda9750
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -57,7 +57,7 @@ class NeoConvertersSpec extends Spec with ShouldMatchers with NeoConverters {
val start = neo.createNode
val middle = neo.createNode
val end = neo.createNode
(((start --| "foo") --> middle) --| "bar") --> end
start --| "foo" --> middle --| "bar" --> end
start.getSingleRelationship(DynamicRelationshipType.withName("foo"), Direction.OUTGOING).
getOtherNode(start) should equal(middle)
middle.getSingleRelationship(DynamicRelationshipType.withName("bar"), Direction.OUTGOING).
Expand Down

0 comments on commit fda9750

Please sign in to comment.