fix(primitive_types6): missing comma in test

This commit is contained in:
Matthew Smillie 2020-10-13 23:18:41 -07:00
parent e6bde22f9c
commit 4fb230daf1
1 changed files with 1 additions and 1 deletions

View File

@ -11,6 +11,6 @@ fn indexing_tuple() {
/// Replace below ??? with the tuple indexing syntax.
let second = ???;
assert_eq!(2, second
assert_eq!(2, second,
"This is not the 2nd number in the tuple!")
}