diff options
Diffstat (limited to 'tests/test_recursiveloader.py')
-rw-r--r-- | tests/test_recursiveloader.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/test_recursiveloader.py b/tests/test_recursiveloader.py index ee11e19..37bfae9 100644 --- a/tests/test_recursiveloader.py +++ b/tests/test_recursiveloader.py @@ -2068,8 +2068,7 @@ COMMON_COMPRESS_VARIANTS = ( list(itertools.chain.from_iterable( [(BasicTestLayout, 0, algo, [x for x in BasicTestLayout.MANIFESTS if x != 'Manifest']), - pytest.param(BasicTestLayout, 64, algo, ['sub/Manifest'], - marks=pytest.mark.xfail), + (BasicTestLayout, 64, algo, ['sub/Manifest']), ] for algo in COMPRESSION_ALGOS)) + [(CompressedSubManifestLayout, 0, 'gz', ['sub/Manifest']), (CompressedSubManifestLayout, 4096, 'gz', []), |