chore(api): apply rustfmt across modules and tests

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Chengdong Zhang
2026-09-21 18:52:52 +08:00
co-authored by Cursor
parent 6c1357ec4d
commit a4ef6ca49e
46 changed files with 495 additions and 334 deletions
+10 -1
View File
@@ -168,7 +168,16 @@ pub async fn create_product_with_sku_in_category(
stock: i32,
category_id: Option<&str>,
) -> (String, String) {
create_product_full(app, owner_token, slug, price_minor, stock, category_id, None).await
create_product_full(
app,
owner_token,
slug,
price_minor,
stock,
category_id,
None,
)
.await
}
/// Same, with a category and a brand so both filters can be exercised.