Skip to content

Commit 0c603e8

Browse files
committed
chore: cargo fmt
1 parent cdf6e0f commit 0c603e8

File tree

1 file changed

+7
-1
lines changed
  • crates/kanban-domain/src/search

1 file changed

+7
-1
lines changed

crates/kanban-domain/src/search/mod.rs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,13 @@ mod tests {
313313
let mut board = Board::new("Test".to_string(), None);
314314
board.card_prefix = Some("KAN".to_string());
315315
let column = crate::Column::new(board.id, "Todo".to_string(), 0);
316-
let card = Card::new(&mut board, column.id, "Unrelated title".to_string(), 0, "KAN");
316+
let card = Card::new(
317+
&mut board,
318+
column.id,
319+
"Unrelated title".to_string(),
320+
0,
321+
"KAN",
322+
);
317323

318324
// Title doesn't contain "KAN-1", but identifier does
319325
let searcher = CompositeSearcher::all("KAN-1");

0 commit comments

Comments
 (0)