From: Maxim Chicherin <maximc@xxxxxxxxxxxx> In order to support PD class in CMID, modifications was made in PD constructor, as a result one of test_pd's cases broke. Fix it to create PD properly. Signed-off-by: Maxim Chicherin <maximc@xxxxxxxxxxxx> --- tests/test_pd.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) mode change 100644 => 100755 tests/test_pd.py diff --git a/tests/test_pd.py b/tests/test_pd.py old mode 100644 new mode 100755 index 978cf4900146..a8d6eb2fb69f --- a/tests/test_pd.py +++ b/tests/test_pd.py @@ -48,8 +48,7 @@ class PDTest(PyverbsAPITestCase): try: PD(None) except TypeError as te: - assert 'expected pyverbs.device.Context' in te.args[0] - assert 'got NoneType' in te.args[0] + assert 'must not be None' in te.args[0] else: raise PyverbsRDMAErrno('Created a PD with None context') -- 2.21.0