(previous, new)
| 24 | |
| 25 | |
| 26 | def assert_eq_lockfile(previous, new): |
| 27 | for content in (previous, new): |
| 28 | assert isinstance(content, OrderedDict) |
| 29 | |
| 30 | # if they both are OrderedDict, then `==` will also check for order |
| 31 | assert previous == new |
| 32 | |
| 33 | |
| 34 | def test_deps_outs_are_sorted_by_path(tmp_dir, dvc, run_head): |
no outgoing calls
no test coverage detected