From d59451fb08f4442049d3b6913e8a3e3c6a556659 Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Fri, 4 Mar 2022 10:06:21 -0700 Subject: [PATCH] Fix tests after font update Co-Authored-By: Antonio Scandurra --- crates/zed/src/zed.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/zed/src/zed.rs b/crates/zed/src/zed.rs index e5312a5512..c9a14bf236 100644 --- a/crates/zed/src/zed.rs +++ b/crates/zed/src/zed.rs @@ -849,7 +849,7 @@ mod tests { lazy_static::lazy_static! { static ref DEFAULT_THEME: parking_lot::Mutex>> = Default::default(); static ref FONTS: Vec>> = vec![ - Assets.load("fonts/zed-sans/zed-sans-regular.ttf").unwrap().to_vec().into() + Assets.load("fonts/zed-sans/zed-sans-extended.ttf").unwrap().to_vec().into() ]; }