tests: Fix the wibox template

This commit is contained in:
Emmanuel Lepage Vallee 2016-05-09 23:56:29 -04:00
parent 992b03d8d2
commit f4b2043da5
1 changed files with 2 additions and 1 deletions

View File

@ -1,11 +1,12 @@
local file_path, image_path, luacovpath = ... local file_path, image_path, luacovpath = ...
-- Set the global shims -- Set the global shims
-- luacheck: globals awesome client tag drawin -- luacheck: globals awesome client tag drawin screen
awesome = require( "awesome" ) awesome = require( "awesome" )
client = require( "client" ) client = require( "client" )
tag = require( "tag" ) tag = require( "tag" )
drawin = require( "drawin" ) drawin = require( "drawin" )
screen = require( "screen" )
-- Force luacheck to be silent about setting those as unused globals -- Force luacheck to be silent about setting those as unused globals
assert(awesome and client and tag) assert(awesome and client and tag)