Skip to content

Commit 8c55eb2

Browse files
committed
Fix formatting
1 parent 946e1a2 commit 8c55eb2

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

src/db/sqlite/organizations.rs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -869,9 +869,12 @@ mod tests {
869869
// Create 3 orgs (all may share the same millisecond timestamp,
870870
// so sort order is by created_at DESC, id DESC — not creation order)
871871
for i in 1..=3 {
872-
repo.create(create_org_input(&format!("cursor-test-{i}"), &format!("Org {i}")))
873-
.await
874-
.unwrap_or_else(|_| panic!("Failed to create org {i}"));
872+
repo.create(create_org_input(
873+
&format!("cursor-test-{i}"),
874+
&format!("Org {i}"),
875+
))
876+
.await
877+
.unwrap_or_else(|_| panic!("Failed to create org {i}"));
875878
}
876879

877880
// Get first page with limit 2

0 commit comments

Comments
 (0)