Skip to content

Commit

Permalink
sort deps files
Browse files Browse the repository at this point in the history
  • Loading branch information
blooop committed Oct 8, 2024
1 parent 3806c11 commit cb91857
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/test_basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ def test_single(self):
deps_both.setup_deps(dict(deps="a*.deps_test.yaml"))

self.assertEqual(
[f.name for f in deps_both.deps_files], ["a1.deps_test.yaml", "a2.deps_test.yaml"]
sorted([f.name for f in deps_both.deps_files]),
["a1.deps_test.yaml", "a2.deps_test.yaml"],
)

self.assertEqual(deps1.get_snippet(), deps_both.get_snippet())
Expand Down

0 comments on commit cb91857

Please sign in to comment.