aboutsummaryrefslogtreecommitdiffstats
path: root/meta/lib/oe/tests/test_path.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oe/tests/test_path.py')
-rw-r--r--meta/lib/oe/tests/test_path.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/tests/test_path.py b/meta/lib/oe/tests/test_path.py
index 5fa24483d1..44d068143e 100644
--- a/meta/lib/oe/tests/test_path.py
+++ b/meta/lib/oe/tests/test_path.py
@@ -85,5 +85,5 @@ class TestRealPath(unittest.TestCase):
def test_loop(self):
for e in self.EXCEPTIONS:
- self.assertRaisesRegexp(OSError, r'\[Errno %u\]' % e[1],
+ self.assertRaisesRegex(OSError, r'\[Errno %u\]' % e[1],
self.__realpath, e[0], False, False)