This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
dongxiaoyan-tsg-autotest/04-CustomLibrary/Custometest/JsonDiff.py

6 lines
122 B
Python
Raw Normal View History

2021-04-20 09:53:29 +08:00
from json_compare import Jcompare
def json_diff(a,b):
cp=Jcompare()
2021-04-22 14:31:50 +08:00
results = cp.compare(a,b)
2021-04-22 14:52:59 +08:00
return results