From bcc4eba348c7681c70b45421ca9a86dac89f1eba Mon Sep 17 00:00:00 2001 From: Andrey Sidorov Date: Wed, 8 Oct 2014 15:08:04 +1100 Subject: [PATCH] fix failing test due to window -> wid rename --- test/core-properties.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/core-properties.js b/test/core-properties.js index 8061c21..450a893 100644 --- a/test/core-properties.js +++ b/test/core-properties.js @@ -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; }