Add a commit to tb.rs (#2436)

This commit is contained in:
Przemyslaw Hugh Kaznowski 2023-08-14 13:27:27 +01:00 committed by GitHub
parent 150b303da9
commit d4b2ba9999
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -67,4 +67,5 @@ async fn table_definitions_can_be_deleted() {
Ok(Some(o)) => panic!("Should not exist but was {:?}", o), Ok(Some(o)) => panic!("Should not exist but was {:?}", o),
Err(e) => panic!("Unexpected error on get {:?}", e), Err(e) => panic!("Unexpected error on get {:?}", e),
}; };
tx.commit().await.unwrap();
} }