Fix style in interner test

This commit is contained in:
John-John Tedro 2017-11-13 07:55:20 +01:00
parent 783c6ec55d
commit b8891eebe4
1 changed files with 1 additions and 1 deletions

View File

@ -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));