Merge pull request #1364 from dbungert/mc-simple-bigger

examples: make the 'simple' mc disk bigger
This commit is contained in:
Dan Bungert 2022-07-22 06:19:09 -06:00 committed by GitHub
commit bc6d7d7386
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -405,7 +405,7 @@
"range": "16",
"removable": "0",
"ro": "0",
"size": "10737418240",
"size": "107374182400",
"stat": " 411 0 16968 119 0 0 0 0 0 264 0 0 0 0 0",
"subsystem": "block",
"uevent": "MAJOR=8\nMINOR=0\nDEVNAME=sda\nDEVTYPE=disk"

View File

@ -1124,7 +1124,7 @@ class TestGap(TestAPI):
resp = await inst.get('/storage/v2')
sda = first(resp['disks'], 'id', 'disk-sda')
gap = sda['partitions'][0]
expected = (10 << 30) - (2 << 20)
expected = (100 << 30) - (2 << 20)
self.assertEqual(expected, gap['size'])
async def test_gap_at_end(self):
@ -1146,7 +1146,7 @@ class TestGap(TestAPI):
[boot] = match(sda['partitions'], mount='/boot/efi')
[p1, p2, gap] = sda['partitions']
self.assertEqual('Gap', gap['$type'])
expected = (10 << 30) - p1['size'] - p2['size'] - (2 << 20)
expected = (100 << 30) - p1['size'] - p2['size'] - (2 << 20)
self.assertEqual(expected, gap['size'])
async def SKIP_test_two_gaps(self):