Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit aca2a00

Browse files
committedMay 5, 2013
Fix span tests
1 parent a0d8873 commit aca2a00

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/libsyntax/parse/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -590,7 +590,7 @@ mod test {
590590
types: ~[]},
591591
None // no idea
592592
),
593-
span: sp(0,3)}, // really?
593+
span: sp(0,1)},
594594
id: 4 // fixme
595595
})
596596
}
@@ -627,7 +627,7 @@ mod test {
627627
types: ~[]},
628628
None // no idea
629629
),
630-
span: sp(6,9)}, // bleah.
630+
span: sp(6,7)},
631631
id: 4 // fixme
632632
}],
633633
output: @ast::Ty{id:5, // fixme

5 commit comments

Comments
 (5)

bors commented on May 5, 2013

@bors
Collaborator

saw approval from sanxiyn
at sanxiyn@aca2a00

bors commented on May 5, 2013

@bors
Collaborator

merging sanxiyn/rust/accurate-span = aca2a00 into auto

bors commented on May 5, 2013

@bors
Collaborator

sanxiyn/rust/accurate-span = aca2a00 merged ok, testing candidate = 6e6a4be

bors commented on May 5, 2013

@bors
Collaborator

fast-forwarding incoming to auto = 6e6a4be

Please sign in to comment.