aboutsummaryrefslogtreecommitdiffstats
path: root/tests/helpers/fixtures.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/helpers/fixtures.rs')
-rw-r--r--tests/helpers/fixtures.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/helpers/fixtures.rs b/tests/helpers/fixtures.rs
index 8f9bfdb..f2076fb 100644
--- a/tests/helpers/fixtures.rs
+++ b/tests/helpers/fixtures.rs
@@ -285,7 +285,7 @@ fn assert_produces(input: &[u8], expected: &FixtureScreen) {
.cells
.get(&format!("{},{}", row, col))
.cloned()
- .unwrap_or_else(FixtureCell::default);
+ .unwrap_or_default();
let got_cell = parser.screen().cell(row, col).unwrap();
assert_eq!(got_cell.contents(), expected_cell.contents);
assert_eq!(got_cell.is_wide(), expected_cell.is_wide);