Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f1ffc68

Browse files
committedJun 20, 2024
[fix] format
1 parent c5ea76f commit f1ffc68

File tree

1 file changed

+7
-1
lines changed
  • diesel_cli/src/infer_schema_internals

1 file changed

+7
-1
lines changed
 

‎diesel_cli/src/infer_schema_internals/sqlite.rs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,13 @@ fn load_table_names_includes_views() {
494494
.into_iter()
495495
.map(|(_, table)| table)
496496
.collect::<Vec<_>>();
497-
assert_eq!(vec![TableName::from_name("users"), TableName::from_name("answer")], table_names);
497+
assert_eq!(
498+
vec![
499+
TableName::from_name("users"),
500+
TableName::from_name("answer")
501+
],
502+
table_names
503+
);
498504
}
499505

500506
#[test]

0 commit comments

Comments
 (0)
Please sign in to comment.