File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1154,10 +1154,10 @@ def test_chunk_nesting(self):
1154
1154
# any path where last segment looks like a chunk key gets special handling
1155
1155
store ['0.0' ] = b'xxx'
1156
1156
assert b'xxx' == store ['0.0' ]
1157
- # assert b'xxx' == store['0/0']
1157
+ assert b'xxx' == store ['0/0' ]
1158
1158
store ['foo/10.20.30' ] = b'yyy'
1159
1159
assert b'yyy' == store ['foo/10.20.30' ]
1160
- # assert b'yyy' == store['foo/10/20/30']
1160
+ assert b'yyy' == store ['foo/10/20/30' ]
1161
1161
store ['42' ] = b'zzz'
1162
1162
assert b'zzz' == store ['42' ]
1163
1163
@@ -1202,12 +1202,12 @@ def test_chunk_nesting(self):
1202
1202
store ['0.0' ] = b'xxx'
1203
1203
assert '0.0' in store
1204
1204
assert b'xxx' == store ['0.0' ]
1205
- # assert b'xxx' == store['0/0']
1205
+ assert b'xxx' == store ['0/0' ]
1206
1206
store ['foo/10.20.30' ] = b'yyy'
1207
1207
assert 'foo/10.20.30' in store
1208
1208
assert b'yyy' == store ['foo/10.20.30' ]
1209
1209
# N5 reverses axis order
1210
- # assert b'yyy' == store['foo/30/20/10']
1210
+ assert b'yyy' == store ['foo/30/20/10' ]
1211
1211
store ['42' ] = b'zzz'
1212
1212
assert '42' in store
1213
1213
assert b'zzz' == store ['42' ]
You can’t perform that action at this time.
0 commit comments