tests: Prevent a rare-ish race condition in the buttons test suite.
Given there is some async wibox redraw operations, there is a tiny, tiny chance the test suite callback will be executed before the redraw. It has been seen on the CI, so it is not 100% impossible.
This commit is contained in:
parent
c02ad71b0c
commit
68f6a567d1
|
@ -89,7 +89,7 @@ table.insert(steps, function()
|
||||||
end)
|
end)
|
||||||
|
|
||||||
table.insert(steps, function()
|
table.insert(steps, function()
|
||||||
assert(button._private.image ~= img)
|
if button._private.image == img then return end
|
||||||
|
|
||||||
return true
|
return true
|
||||||
end)
|
end)
|
||||||
|
@ -115,7 +115,7 @@ table.insert(steps, function()
|
||||||
end)
|
end)
|
||||||
|
|
||||||
table.insert(steps, function()
|
table.insert(steps, function()
|
||||||
assert(button._private.image ~= img)
|
if button._private.image == img then return end
|
||||||
|
|
||||||
return true
|
return true
|
||||||
end)
|
end)
|
||||||
|
|
Loading…
Reference in New Issue