diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2020-06-07 00:33:20 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-07 00:33:20 +0300 |
commit | 4f5f8412966626771043bd3a90800124fed44ebe (patch) | |
tree | 264e8ffa917324b5e30b7532fcf7d773382012c3 /alacritty_terminal/tests/ref.rs | |
parent | 7aafbb757d485c5ff065324464dde8b5322cdd92 (diff) | |
download | alacritty-4f5f8412966626771043bd3a90800124fed44ebe.tar.gz alacritty-4f5f8412966626771043bd3a90800124fed44ebe.zip |
Remove copypasta dependency from alacritty_terminal
Diffstat (limited to 'alacritty_terminal/tests/ref.rs')
-rw-r--r-- | alacritty_terminal/tests/ref.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/alacritty_terminal/tests/ref.rs b/alacritty_terminal/tests/ref.rs index 41959b2f..63cf50f8 100644 --- a/alacritty_terminal/tests/ref.rs +++ b/alacritty_terminal/tests/ref.rs @@ -6,7 +6,6 @@ use std::io::{self, Read}; use std::path::Path; use alacritty_terminal::ansi; -use alacritty_terminal::clipboard::Clipboard; use alacritty_terminal::config::MockConfig; use alacritty_terminal::event::{Event, EventListener}; use alacritty_terminal::index::Column; @@ -98,7 +97,7 @@ fn ref_test(dir: &Path) { let mut config = MockConfig::default(); config.scrolling.set_history(ref_config.history_size); - let mut terminal = Term::new(&config, &size, Clipboard::new_nop(), Mock); + let mut terminal = Term::new(&config, &size, Mock); let mut parser = ansi::Processor::new(); for byte in recording { |