chore: fix window width in spec for win (#15693)

This commit is contained in:
Shelley Vohr 2018-11-13 11:31:03 -05:00 committed by GitHub
parent 8f35198bfb
commit 565e4c5910
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -538,7 +538,7 @@ describe('BrowserWindow module', () => {
const fullBounds = { x: 440, y: 225, width: 500, height: 400 }
w.setBounds(fullBounds)
const boundsUpdate = { width: 100 }
const boundsUpdate = { width: 200 }
w.setBounds(boundsUpdate)
const expectedBounds = Object.assign(fullBounds, boundsUpdate)