aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Nikolaus Rath <Nikolaus@rath.org>2017-08-25 09:49:23 +0200
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2017-08-25 09:49:23 +0200
commit48d0e99af3c778d02f6b990cb70a2d25df253a1a (patch)
treeb941ed875ab71fe68d7c03193fa74870d3a8e406
parent6b0d363b6a5461471c98611b63b7fb172a8e25e8 (diff)
Fix writeback capability check.
-rw-r--r--test/test_ctests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_ctests.py b/test/test_ctests.py
index fa21090..fff2427 100644
--- a/test/test_ctests.py
+++ b/test/test_ctests.py
@@ -18,7 +18,7 @@ import os.path
pytestmark = fuse_test_marker()
-@pytest.mark.skipif('FUSE_CAP_WRITEBACK' not in fuse_caps,
+@pytest.mark.skipif('FUSE_CAP_WRITEBACK_CACHE' not in fuse_caps,
reason='not supported by running kernel')
@pytest.mark.parametrize("writeback", (False, True))
def test_write_cache(tmpdir, writeback):