Skip to content

Commit

Permalink
Fix formatting on registry tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kerosina authored Jan 7, 2025
1 parent ec5bea3 commit e415c54
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion crates/tests/misc/registry/tests/string.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,10 @@ fn string() -> Result<()> {
assert_eq!(key.get_multi_string("expand_string")?, ["value"]);

key.set_expand_string("expand_string_different_types".to_string(), "value")?;
assert_eq!(key.get_type("expand_string_different_types")?, Type::ExpandString);
assert_eq!(
key.get_type("expand_string_different_types")?,
Type::ExpandString
);
assert_eq!(key.get_string("expand_string_different_types")?, "value");
assert_eq!(key.get_hstring("expand_string_different_types")?, "value");
assert_eq!(
Expand Down

0 comments on commit e415c54

Please sign in to comment.