From e2aeb18fa5f05458bdaa8488cc6424109f908855 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Fri, 1 Nov 2019 15:08:32 -0400 Subject: there's no reason title and icon_name should be options --- tests/init.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/init.rs') diff --git a/tests/init.rs b/tests/init.rs index f5c896a..4eb3910 100644 --- a/tests/init.rs +++ b/tests/init.rs @@ -25,8 +25,8 @@ fn init() { "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n" ); - assert_eq!(screen.title(), None); - assert_eq!(screen.icon_name(), None); + assert_eq!(screen.title(), ""); + assert_eq!(screen.icon_name(), ""); assert_eq!(screen.fgcolor(), vt100::Color::Default); assert_eq!(screen.bgcolor(), vt100::Color::Default); -- cgit v1.2.3-54-g00ecf