Skip to content

Commit

Permalink
test(GUI): fix non-running test in DrivesModel test suite (#1061)
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
Juan Cruz Viotti authored Jan 30, 2017
1 parent 0187cb0 commit ea95177
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/gui/models/drives.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ describe('Browser: DrivesModel', function() {
{
device: '/dev/sdb',
name: 'Foo',
size: 999999999,
size: 2000000000,
mountpoint: '/mnt/foo',
system: false,
protected: true
Expand Down

0 comments on commit ea95177

Please sign in to comment.