fix failing test due to window -> wid rename

This commit is contained in:
Andrey Sidorov 2014-10-08 15:08:04 +11:00
parent 74750ca95b
commit bcc4eba348

View file

@ -57,7 +57,7 @@ describe('Window property', function() {
assert.equal(ev.atom, X.atoms.WM_NAME, 'atom in notification should be same as in ChangeProperty');
// TODO: replace 0 with X.PropertyNewValue
assert.equal(ev.state, 0, 'atom in notification should be same as in ChangeProperty');
assert.equal(ev.window, wid, 'window in notification should be same as in ChangeProperty');
assert.equal(ev.wid, wid, 'window in notification should be same as in ChangeProperty');
done();
return;
}