Skip to content

Commit 71b826d

Browse files
committed
chore: cargo fmt
1 parent 2bae034 commit 71b826d

1 file changed

Lines changed: 15 additions & 9 deletions

File tree

src/core/spell.rs

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -811,15 +811,21 @@ mod tests {
811811
let shared_spells: HashSet<String> = HashSet::new();
812812
let scrolls: Option<HashMap<String, ScrollDefinition>> = None;
813813

814-
assert!(Spell::new("===", &shared_spells, &scrolls, (0, 3), None)
815-
.unwrap()
816-
.is_none());
817-
assert!(Spell::new("a<=b", &shared_spells, &scrolls, (0, 4), None)
818-
.unwrap()
819-
.is_none());
820-
assert!(Spell::new("foo==bar", &shared_spells, &scrolls, (0, 7), None)
821-
.unwrap()
822-
.is_none());
814+
assert!(
815+
Spell::new("===", &shared_spells, &scrolls, (0, 3), None)
816+
.unwrap()
817+
.is_none()
818+
);
819+
assert!(
820+
Spell::new("a<=b", &shared_spells, &scrolls, (0, 4), None)
821+
.unwrap()
822+
.is_none()
823+
);
824+
assert!(
825+
Spell::new("foo==bar", &shared_spells, &scrolls, (0, 7), None)
826+
.unwrap()
827+
.is_none()
828+
);
823829
}
824830

825831
#[test]

0 commit comments

Comments
 (0)