changeset 462:2027ab79f006

tests: Fix exclusion of built-in endpoints in tests.
author Ludovic Chabant <ludovic@chabant.com>
date Sat, 06 Oct 2018 19:27:47 -0700
parents 2fc9abd93023
children fcef742731cf
files tests/mock.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/tests/mock.py	Sun Sep 30 21:40:15 2018 -0700
+++ b/tests/mock.py	Sat Oct 06 19:27:47 2018 -0700
@@ -91,7 +91,7 @@
 class MockFileSystem(FileSystem):
     def __init__(self, root, config, structure=None):
         super(MockFileSystem, self).__init__(root, config)
-        self.include_builtin_namespaces = False
+        self.include_builtin_endpoints = False
         if not structure:
             self.structure = {}
         else: