Skip to content

Commit 94165d5

Browse files
committed
wip
1 parent 1cb14a0 commit 94165d5

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

synapse/lib/schemas.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -484,8 +484,7 @@
484484
'parent': {'type': 'string', 'pattern': s_config.re_iden},
485485
'type': {'type': 'string', 'pattern': re_drivename},
486486
'name': {'type': 'string', 'pattern': re_drivename},
487-
# TODO: Do we migrate this?
488-
'perm': s_msgpack.deepcopy(easyPermSchema),
487+
# TODO: This used to be called `perm`, so migrate this as part of the big migration from 2.x
489488
'permissions': s_msgpack.deepcopy(easyPermSchema),
490489
'kids': {'type': 'number', 'minimum': 0},
491490
'created': {'type': 'number'},

synapse/tests/test_lib_cell.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -280,9 +280,9 @@ async def migrate_v1(info, versinfo, data):
280280

281281
await cell.drive.setTypeSchema('woot', testDataSchema_v1, migrate_v1)
282282

283-
await cell.setDriveItemProp(iden, 'woot', 'beep')
283+
await cell.setDriveItemProp(iden, 'stuff', 3829)
284284
data = await cell.getDriveData(iden)
285-
self.eq(data[1]['woot'], 'beep')
285+
self.eq(data[1]['stuff'], 3829)
286286

287287
versinfo, data = await cell.getDriveData(iden, vers=(1, 0, 0))
288288
self.eq('woot', data.get('woot'))

0 commit comments

Comments
 (0)