From ca5bcb7df4fe685e850615f4fb0ce572aadd590d Mon Sep 17 00:00:00 2001 From: Santiago Gimeno Date: Tue, 9 Dec 2014 10:34:49 +0100 Subject: [PATCH] test: clean configure-request test --- test/configure-request.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/configure-request.js b/test/configure-request.js index 8715e57..77e952d 100644 --- a/test/configure-request.js +++ b/test/configure-request.js @@ -9,7 +9,6 @@ describe('ConfigureRequest', function() { self.X = dpy.client; self.root = dpy.screen[0].root; self.wid = self.X.AllocID(); - self.wid_helper = self.X.AllocID(); /* self.X acts like a WM */ self.X.ChangeWindowAttributes(self.root, { eventMask: x11.eventMask.SubstructureRedirect }); self.X.CreateWindow(self.wid, self.root, 0, 0, 1, 1); // 1x1 pixel window @@ -30,7 +29,6 @@ describe('ConfigureRequest', function() { var client = x11.createClient(function(err, dpy) { should.not.exist(err); self.X.once('event', function(ev) { - console.log(ev); ev.name.should.equal('ConfigureRequest'); ev.x.should.equal(0); ev.y.should.equal(20);