Skip to content

Commit

Permalink
Fix style in interner test
Browse files Browse the repository at this point in the history
  • Loading branch information
udoprog committed Nov 13, 2017
1 parent 783c6ec commit b8891ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libsyntax_pos/symbol.rs
Expand Up @@ -416,7 +416,7 @@ mod tests {
// first one is zero:
assert_eq!(i.intern("dog"), Symbol(0));
// re-use gets the same entry:
assert_eq!(i.intern ("dog"), Symbol(0));
assert_eq!(i.intern("dog"), Symbol(0));
// different string gets a different #:
assert_eq!(i.intern("cat"), Symbol(1));
assert_eq!(i.intern("cat"), Symbol(1));
Expand Down

0 comments on commit b8891ee

Please sign in to comment.