Remove reduntant semicolon

This commit is contained in:
Michael Vines
2019-10-03 16:24:50 -07:00
parent 1d503faa2c
commit c1c7e0ff08
2 changed files with 2 additions and 2 deletions

View File

@ -176,7 +176,7 @@ mod test {
("bool", true, bool) ("bool", true, bool)
); );
assert_eq!(point.name, "name"); assert_eq!(point.name, "name");
assert_eq!(point.fields[0], ("i64", "1i".to_string()));; assert_eq!(point.fields[0], ("i64", "1i".to_string()));
assert_eq!( assert_eq!(
point.fields[1], point.fields[1],
("String", "\"string space string\"".to_string()) ("String", "\"string space string\"".to_string())

View File

@ -1418,7 +1418,7 @@ mod tests {
std::mem::size_of::<StakeState>(), std::mem::size_of::<StakeState>(),
&id(), &id(),
) )
.expect("stake_account");; .expect("stake_account");
let to = Pubkey::new_rand(); let to = Pubkey::new_rand();
let mut to_account = Account::new(1, 0, &system_program::id()); let mut to_account = Account::new(1, 0, &system_program::id());