diff options
Diffstat (limited to 'test/test_examples.py')
-rwxr-xr-x | test/test_examples.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/test_examples.py b/test/test_examples.py index 26f3b92..5d6dacc 100755 --- a/test/test_examples.py +++ b/test/test_examples.py @@ -194,7 +194,8 @@ def test_passthrough_hp(short_tmpdir, cache, output_checker): tst_open_read(src_dir, mnt_dir) tst_open_write(src_dir, mnt_dir) tst_create(mnt_dir) - tst_passthrough(src_dir, mnt_dir) + if not cache: + tst_passthrough(src_dir, mnt_dir) tst_append(src_dir, mnt_dir) tst_seek(src_dir, mnt_dir) tst_mkdir(mnt_dir) |