1
1
mirror of https://github.com/wez/wezterm.git synced 2024-09-20 11:17:15 +03:00

fix tests

This commit is contained in:
Wez Furlong 2019-12-23 14:52:49 -08:00
parent aac93e7f0a
commit f350b24220

View File

@ -7,6 +7,7 @@ use bitflags::bitflags;
mod c1;
mod csi;
mod selection;
use crate::color::ColorPalette;
use pretty_assertions::assert_eq;
use std::cell::RefCell;
use std::sync::Arc;
@ -89,6 +90,10 @@ impl TerminalConfiguration for TestTermConfig {
fn scrollback_size(&self) -> usize {
self.scrollback
}
fn color_palette(&self) -> ColorPalette {
ColorPalette::default()
}
}
impl TestTerm {