From f4b2043da54aac62a9e62f00f045145dd725d765 Mon Sep 17 00:00:00 2001 From: Emmanuel Lepage Vallee Date: Mon, 9 May 2016 23:56:29 -0400 Subject: [PATCH] tests: Fix the wibox template --- tests/examples/wibox/template.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/examples/wibox/template.lua b/tests/examples/wibox/template.lua index c035185ae..570c0dee4 100644 --- a/tests/examples/wibox/template.lua +++ b/tests/examples/wibox/template.lua @@ -1,11 +1,12 @@ local file_path, image_path, luacovpath = ... -- Set the global shims --- luacheck: globals awesome client tag drawin +-- luacheck: globals awesome client tag drawin screen awesome = require( "awesome" ) client = require( "client" ) tag = require( "tag" ) drawin = require( "drawin" ) +screen = require( "screen" ) -- Force luacheck to be silent about setting those as unused globals assert(awesome and client and tag)