From 161017f0240d567240e5b10b7ea21866b20c1a92 Mon Sep 17 00:00:00 2001 From: Federico Terzi Date: Sat, 15 Aug 2020 19:34:30 +0200 Subject: [PATCH] Fix bug that prevented test runs on Windows --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index aada978..714a2ca 100644 --- a/src/main.rs +++ b/src/main.rs @@ -17,7 +17,7 @@ * along with espanso. If not, see . */ -#![windows_subsystem = "windows"] + #![cfg_attr(not(test), windows_subsystem = "windows")] #[macro_use] extern crate lazy_static;