From ea95177e94bd457f5e468121295a7df767f6532e Mon Sep 17 00:00:00 2001 From: Juan Cruz Viotti Date: Mon, 30 Jan 2017 10:03:24 -0400 Subject: [PATCH] test(GUI): fix non-running test in DrivesModel test suite (#1061) We have a test to ensure a drive is not auto-selected when its protected, however the real functionality of this test was not being tested given that the size the fake drive had was not enough to hold the image. Signed-off-by: Juan Cruz Viotti --- tests/gui/models/drives.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/gui/models/drives.spec.js b/tests/gui/models/drives.spec.js index 4e242066..880fbe8a 100644 --- a/tests/gui/models/drives.spec.js +++ b/tests/gui/models/drives.spec.js @@ -210,7 +210,7 @@ describe('Browser: DrivesModel', function() { { device: '/dev/sdb', name: 'Foo', - size: 999999999, + size: 2000000000, mountpoint: '/mnt/foo', system: false, protected: true