Skip to content

Commit

Permalink
test: fix broken tests
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-fff committed Jan 12, 2025
1 parent 1cd060a commit 6c0d97d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/renamer/formatter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ mod tests {
title: String::from("Title"),
initial_title: String::from("Title"),
is_active: false,
is_fullscreen: FullscreenMode::None,
is_fullscreen: FullscreenMode::Fullscreen,
matched_rule: Inactive(Default(String::from("DefaultIcon"))),
is_dedup_inactive_fullscreen: false,
};
Expand Down
2 changes: 1 addition & 1 deletion src/renamer/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ mod tests {

assert_eq!(client1 == client2, true);
assert_eq!(client4 == client5, true);
assert_eq!(client1 == client4, false);
assert_eq!(client1 == client4, true);
assert_eq!(client1 == client3, false);
assert_eq!(client5 == client6, false);
}
Expand Down

0 comments on commit 6c0d97d

Please sign in to comment.