Skip to content

Commit b8891ee

Browse files
committed
Fix style in interner test
1 parent 783c6ec commit b8891ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libsyntax_pos/symbol.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ mod tests {
416416
// first one is zero:
417417
assert_eq!(i.intern("dog"), Symbol(0));
418418
// re-use gets the same entry:
419-
assert_eq!(i.intern ("dog"), Symbol(0));
419+
assert_eq!(i.intern("dog"), Symbol(0));
420420
// different string gets a different #:
421421
assert_eq!(i.intern("cat"), Symbol(1));
422422
assert_eq!(i.intern("cat"), Symbol(1));

0 commit comments

Comments
 (0)