diff options
Diffstat (limited to 'robotframework-onap/ONAPLibrary/JSON.py')
-rw-r--r-- | robotframework-onap/ONAPLibrary/JSON.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/robotframework-onap/ONAPLibrary/JSON.py b/robotframework-onap/ONAPLibrary/JSON.py index 6eb1e65..1cb67dd 100644 --- a/robotframework-onap/ONAPLibrary/JSON.py +++ b/robotframework-onap/ONAPLibrary/JSON.py @@ -14,6 +14,7 @@ from ONAPLibrary.robotlibcore import HybridCore from ONAPLibrary.JSONKeywords import JSONKeywords +from ONAPLibrary.JSONPathKeywords import JSONPathKeywords class JSON(HybridCore): @@ -22,6 +23,7 @@ class JSON(HybridCore): def __init__(self): self.keyword_implementors = [ - JSONKeywords() + JSONKeywords(), + JSONPathKeywords() ] HybridCore.__init__(self, self.keyword_implementors) |