We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 946e1a2 commit 8c55eb2Copy full SHA for 8c55eb2
1 file changed
src/db/sqlite/organizations.rs
@@ -869,9 +869,12 @@ mod tests {
869
// Create 3 orgs (all may share the same millisecond timestamp,
870
// so sort order is by created_at DESC, id DESC — not creation order)
871
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}"));
+ repo.create(create_org_input(
+ &format!("cursor-test-{i}"),
+ &format!("Org {i}"),
875
+ ))
876
+ .await
877
+ .unwrap_or_else(|_| panic!("Failed to create org {i}"));
878
}
879
880
// Get first page with limit 2
0 commit comments