Refactor(clanInternals): remove depending on clanInternals.inventory

This commit is contained in:
Johannes Kirschbauer
2025-06-10 17:43:03 +02:00
parent b9d7dac65f
commit 0837a8ecd7
2 changed files with 3 additions and 3 deletions

View File

@@ -358,9 +358,9 @@ def test_caching_works(flake: ClanFlake) -> None:
my_flake, "get_from_nix", wraps=my_flake.get_from_nix
) as tracked_build:
assert tracked_build.call_count == 0
my_flake.select("clanInternals.inventory.meta")
my_flake.select("clanInternals.inventoryClass.inventory.meta")
assert tracked_build.call_count == 1
my_flake.select("clanInternals.inventory.meta")
my_flake.select("clanInternals.inventoryClass.inventory.meta")
assert tracked_build.call_count == 1