Commit cbbdf40
LittleCoinCoin
fix(tests): correct dependency dummy metadata extraction
The test registry creation was looking for 'hatch_dependencies' and
'python_dependencies' keys, but the actual metadata structure uses
'dependencies.hatch' and 'dependencies.python' (nested structure).
This caused the test registry to be created without dependency information,
preventing dependency resolution from working correctly in tests.
Updated to use correct nested structure:
- metadata.get('dependencies', {}).get('hatch', [])
- metadata.get('dependencies', {}).get('python', [])1 parent 44d6a73 commit cbbdf40
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
113 | 113 | | |
114 | 114 | | |
115 | 115 | | |
116 | | - | |
| 116 | + | |
117 | 117 | | |
118 | 118 | | |
119 | 119 | | |
120 | 120 | | |
121 | 121 | | |
122 | 122 | | |
123 | | - | |
| 123 | + | |
124 | 124 | | |
125 | 125 | | |
126 | 126 | | |
| |||
0 commit comments