tests: Fix a luacheck issue.

This commit is contained in:
Emmanuel Lepage Vallee 2016-09-28 17:29:56 -04:00 committed by Uli Schlachter
parent 7f74c783cd
commit fb5d995775
1 changed files with 5 additions and 2 deletions

View File

@ -23,13 +23,16 @@ read_globals = {
"mouse",
"mousegrabber",
"root",
"screen",
"selection",
"tag",
"window",
}
-- May not be read-only due to client.focus
-- screen may not be read-only, because newer luacheck versions complain about
-- screen[1].tags[1].selected = true.
-- client may not be read-only due to client.focus.
globals = {
"screen",
"client"
}