Skip to content

Commit be6599b

Browse files
committed
async not required
1 parent 1e47888 commit be6599b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

nexus/db-queries/src/db/queries/region_allocation.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -689,8 +689,8 @@ mod test {
689689
logctx.cleanup_successful();
690690
}
691691

692-
#[tokio::test]
693-
async fn allocation_query_region_size_overflow() {
692+
#[test]
693+
fn allocation_query_region_size_overflow() {
694694
let volume_id = VolumeUuid::nil();
695695
let snapshot_id = None;
696696

@@ -716,8 +716,8 @@ mod test {
716716
assert!(matches!(e, AllocationQueryError::RegionSizeOverflow));
717717
}
718718

719-
#[tokio::test]
720-
async fn allocation_query_region_size_too_large() {
719+
#[test]
720+
fn allocation_query_region_size_too_large() {
721721
let volume_id = VolumeUuid::nil();
722722
let snapshot_id = None;
723723

0 commit comments

Comments
 (0)