summaryrefslogtreecommitdiffstats
path: root/testsuite/Testsrc/Testlib/TestServer/TestPlugin/Testhelpers.py
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/Testsrc/Testlib/TestServer/TestPlugin/Testhelpers.py')
-rw-r--r--testsuite/Testsrc/Testlib/TestServer/TestPlugin/Testhelpers.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/Testsrc/Testlib/TestServer/TestPlugin/Testhelpers.py b/testsuite/Testsrc/Testlib/TestServer/TestPlugin/Testhelpers.py
index b16f1a1a2..e48507a57 100644
--- a/testsuite/Testsrc/Testlib/TestServer/TestPlugin/Testhelpers.py
+++ b/testsuite/Testsrc/Testlib/TestServer/TestPlugin/Testhelpers.py
@@ -1699,7 +1699,7 @@ class TestEntrySet(TestDebuggable):
idata = ["owner:owner",
"group: GROUP",
- "perms: 775",
+ "mode: 775",
"important: true",
"bogus: line"]
mock_open.return_value.readlines.return_value = idata
@@ -1707,7 +1707,7 @@ class TestEntrySet(TestDebuggable):
expected = DEFAULT_FILE_METADATA.copy()
expected['owner'] = 'owner'
expected['group'] = 'GROUP'
- expected['perms'] = '0775'
+ expected['mode'] = '0775'
expected['important'] = 'true'
self.assertItemsEqual(eset.metadata,
expected)