diff tests/mock.py @ 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 c78eaebced8b
children 0bfd648aca6a
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: