diff options
| author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-05-20 11:57:44 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-06-02 08:10:04 +0100 |
| commit | fcd6b38bab8517d83e1ed48eef1bca9a9a190f57 (patch) | |
| tree | 74b1ae041ac6fbc838cc2b3a44953ed3e99360b9 /meta/lib/oe/tests | |
| parent | dad9617809c60ec5f11d4780b0afa1cffa1efed5 (diff) | |
| download | openembedded-core-fcd6b38bab8517d83e1ed48eef1bca9a9a190f57.tar.gz openembedded-core-fcd6b38bab8517d83e1ed48eef1bca9a9a190f57.tar.bz2 openembedded-core-fcd6b38bab8517d83e1ed48eef1bca9a9a190f57.zip | |
classes/lib: Complete transition to python3
This patch contains all the other misc pieces of the transition to
python3 which didn't make sense to be broken into individual patches.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oe/tests')
| -rw-r--r-- | meta/lib/oe/tests/test_path.py | 2 |
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) |
