diff options
Diffstat (limited to 'meta/lib/oeqa/sdk/buildtools-cases/sanity.py')
-rw-r--r-- | meta/lib/oeqa/sdk/buildtools-cases/sanity.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/sdk/buildtools-cases/sanity.py b/meta/lib/oeqa/sdk/buildtools-cases/sanity.py index b9dfa39a06..a55d456656 100644 --- a/meta/lib/oeqa/sdk/buildtools-cases/sanity.py +++ b/meta/lib/oeqa/sdk/buildtools-cases/sanity.py | |||
@@ -21,4 +21,4 @@ class SanityTests(OESDKTestCase): | |||
21 | # Canonicalise the location of this command | 21 | # Canonicalise the location of this command |
22 | tool_path = os.path.realpath(self._run("command -v %s" % command).strip()) | 22 | tool_path = os.path.realpath(self._run("command -v %s" % command).strip()) |
23 | # Assert that the tool was found inside the SDK root | 23 | # Assert that the tool was found inside the SDK root |
24 | self.assertEquals(os.path.commonprefix((sdk_base, tool_path)), sdk_base) | 24 | self.assertEqual(os.path.commonprefix((sdk_base, tool_path)), sdk_base) |