tests: Fix urgent test use of deprecated functions

It caused noise in the test results
This commit is contained in:
Emmanuel Lepage Vallee 2016-04-17 06:09:47 -04:00
parent f2a19690ac
commit d736850e60
1 changed files with 3 additions and 3 deletions

View File

@ -55,7 +55,7 @@ local steps = {
root.fake_input("key_release", "2")
root.fake_input("key_release", "Super_L")
elseif awful.tag.selectedlist()[1] == tags[awful.screen.focused()][2] then
elseif awful.screen.focused().selected_tags[1] == tags[awful.screen.focused()][2] then
assert(#client.get() == 1)
local c = client.get()[1]
assert(not c.urgent, "Client is not urgent anymore.")
@ -79,11 +79,11 @@ local steps = {
awful.spawn("xterm")
elseif awful.tag.selectedlist()[1] == tags[awful.screen.focused()][2] then
elseif awful.screen.focused().selected_tags[1] == tags[awful.screen.focused()][2] then
assert(not urgent_cb_done)
assert(awful.tag.getproperty(tags[awful.screen.focused()][2], "urgent") == false)
assert(awful.tag.getproperty(tags[awful.screen.focused()][2], "urgent_count") == 0)
assert(awful.tag.selectedlist()[2] == nil)
assert(awful.screen.focused().selected_tags[2] == nil)
return true
end
end,